|
|
HTML <html> tag
Syntax
<html> - </html>
Definition and Usage
The HTML element indicates to the browsers that it is an HTML document.
Example
| Source |
Output |
<html>
<head>
</head>
<body>
This is the text in the document <hr> this is another text
</body>
</html>
|
This is the text in the document this is another text
|
|
|