HTML Tag: html
A web page’s root element. The big daddy. The ancestor of all elements. The element that wraps its arms around all other elements.
The html
element must contain a head
element followed by a body
element.
Optional Attributes
Attribute | Description | Possible values |
---|---|---|
manifest |
The location of an application cache manifest. Yeah, baby. Party on down with offline browsing. | URL. |
Global attributes |
Example
<!DOCTYPE html>
<html lang="en">
<head>
<title>The Root of all Evil</title>
</head>
<body>
<!-- big bag of evil content -->
</body>
</html>