Make Money Online HTML PHP JAVASCRIPT HTML TUTORIAL FOR BEGINNERS

HTML TUTORIAL FOR BEGINNERS

HTML TUTORIAL FOR BEGINNERS post thumbnail image


HTML is the basic building block of the World Wide Web. It defines the meaning and structure of web content. Other technologies besides HTML are generally used to describe a web page’s appearance/presentation (CSS) or functionality/behavior (JavaScript).

HTML is a formal Recommendation by the World Wide Web Consortium (W3C). doctype, head, meta, title, body, h1, h2, h3, h4, h5, h6, p, ol, ul, li, dl, dt, dd ,em ,strong ,small ,sup ,sub

What is HTML?

HTML (HyperText Markup Language) is a standard markup language used for creating web pages and web applications. With Cascading Style Sheets (CSS) and JavaScript it forms a triad of cornerstone technologies for the World Wide Web.

Web browsers receive HTML documents from a web server or from local storage and render them into multimedia web pages. HTML describes the structure of a web page semantically and originally included cues for the appearance of the document.

HTML elements are the building blocks of HTML pages. With HTML constructs, images and other objects such as Java applets or ActiveX controls can be embedded into the rendered page. It provides a means to create structured documents by denoting structural semantics for text such as headings, paragraphs, lists etc as well as for links, quotes and other items. HTML elements are delineated by tags written using angle brackets.

Basic HTML Document Structure
The following shows the basic structure of an HTML document:
Your document begins with a document type declaration: .
Your document begins with tag and ends with . All other content must be placed between these two tags. The text inside an element is called its children; in this example is parent element and & are child elements of . Each child element can have its own children (nested elements). For example element has two child elements here-

&

.

Related Post