Last Updated on April 26, 2023 by Roshan Parihar
HTML html tag is the root or Top-Level element of the HTML document.
The HTML specification tells the browser that this is an HTML document. The HTML head tag comes just after this tag.
Syntax
1 |
<html>Put other tags and its content here...</html> |
1 2 3 4 5 6 7 8 |
<html> <head> <title>This is the title</title> </head> <body> This is the body content. </body> </html> |
Resources and References of HTML html tag
1. W3C Specification.
2. HTML living standard
3. W3C project using Github