html
Definition and Usage
The <html> tag tells the browser that this is an HTML document. The <html> tag represents the root of an HTML document. The HTML<html> tag is the container that contains all other HTML elements (except for the <!doctype> tag which is located before the opening HTML tag). All other HTML elements are nested between the <html> and </html> tags.
Syntax
<!doctype>
<html>
<body>
This is my first web page
</body>
</html>