HTML Elements

  1. Normal Elements
  2. Void Elements

Untitled

Structure of HTML Document

<!DOCTYPE html> <!-- This Represents the HTML is of version 5 -->
<html>
    <head>
        <!-- Meta Data -->
    </head>
    <body>
    </body>
</html>

To get Basic HTML Structure in VS Code by Emmet abbreviation

Method 1:

Shift+1+Enter

Method 2:

Type html in a file named with .html extension we will get 3 options Select html : 5

  1. Live Server (Ritwick Dey) is like a compiler for HTML Doc, hosts the web doc on port (5500)
  2. Chrome has good developer tools, hence recommended for making it default browser.

01-Creating First HTML Page.html