New! My 44-page ebook "CSS in 44 minutes" is out! 😃

Get it now →

# html

Defines the root element of an HTML document. All other elements must be contained within this root element.

Example: Copy

<!DOCTYPE html>
<html>
  <head>
    <!-- Document metadata -->
  </head>
  <body>
    <!-- Document content -->
  </body>
</html>