tag < html >
The root element that specifies that the content of the document is HTML. The opening tag immediately follows the DOCTYPE declaration and the closing tag is the last thing in the document. The html element must contain the head and the body elements.
| example | |
|
< html > < head > < title > The title of the page < /title > < /head > < body > ... The content of the page ... < /body > < /html > |
|