Tuesday, 6 December 2016

HTML Syntax

  1. An HTML element usually consists of a start tag and end tag, with the content inserted in between:<tagname>Content goes here...</tagname>
  2. All HTML documents must start with a document type declaration: <!DOCTYPE html>.
  3. The HTML document itself begins with <html> and ends with </html>.
  4. Head tag represents the document's header and its start with <head> and close with </head>
  5. The <title> tag is used inside the head tag to mention the document title.
  6. The visible part of the HTML document is between <body> and </body>.

No comments:

Post a Comment