SyntaxStudy
Sign Up

<html>

tag

The root element of an HTML page. All other elements are descendants of this element.

Syntax

<html lang="en"> ... </html>

Example

html
<html lang="en">
<head>
    <title>Page Title</title>
</head>
<body>
    <h1>Hello</h1>
</body>
</html>