Skip to content

HTML Basic Tags

Hridaya edited this page Feb 4, 2021 · 1 revision

HTML Basic Tags

  • When you save a HTML file, then make it's file extension to .html or .htm
  • All HTML documents must start with a document type declaration: <!DOCTYPE html>.
    • The <!DOCTYPE> declaration represents the document type, and helps browsers to display web pages correctly
    • It must only appear once, at the top of the page (before any HTML tags).
  • The HTML document itself begins with <html> and ends with </html>.
  • The visible part of the HTML document is between <body> and </body>.

NOTE: None of the HTML tags are Case Sensitive