Structure

html

This tag tells the browser that the content in the document is HTML. The opening html tag must be immediately after the document type declaration and the closing tag should be the last thing on the document. The only required attribute is “xmlns” with the value "http://www.w3.org/1999/xhtml". The tags head and body must be within the html tags.

Syntax

<html attributes> ... </html>

Example

<html>
   <head>
   </head>
   <body>
      Hello!
   </body>
</html>

Related tags

CSS Properties

HTML attributes

Search the Soup!