Language References
Identifies the document as containing HTML elements. | HTML 2, 3.2, 4, 4.01, 5 |
HTML Syntax
<html
title = text
>
The HTML element identifies the file as an HTML document. All HTML documents should start with the <html> tag and end with the </html> tag.
HTML Members
<html>
<head>
<title>Sample HTML document</title>
</head>
<body>
<p>Hello, World.</p>
</body>
</html>
Show me
HEAD BODY TITLE