<html> HTML Tag

In this article I will discuss the <html> HTML Tag
  • 1828

The HTML html tag is the container that contains all other HTML elements.All other HTML elements are nested between the opening <html> and </html> tags.The <html> element is also known as the root element.
 
Example

<html>

<head>

    <title>HTML tag</title>

</head>

<body style="color: orange">

    Content will come hear.

</body>

</html>


Output

rrr.jpg

Ask Your Question 

Got a programming related question? You may want to post your question here

Programming Answers here

 

© 2020 DotNetHeaven. All rights reserved.