[HTML5] html tag-where to write HTML inside

HTML is written inside the html tag .

<html>
  HTML content
</html>

HTML template

DOCTYPE declaration and html tag , head tag, The body tag is the HTML template.

<! DOCTYPE html>
<html>
  <head>
    HTML header
  </head>
  <body>
    HTML content
  </body>
</html>

Associated Information