<html> Tag in HTML

In this article i am going to explain about html tag in HTML
  • 1851

Definition

 

<html> tag are used to create an html document. That tell the browser that this document is html document. All other html tags are used under the <html> tag.

Supporting Browsers

Internet Explorer, Mozilla Firefox, Google Chrome, Safari and Opera are the supporting browsers.

Example
 

<html>

<head>

    <title></title>

</head>

<body>

    This is an HTML Document

</body>

</html>

 

Output

ht.htm6.jpg

Further Readings

 

You may also want to read these related articles

 

Ask Your Question 

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

Programming Answers here

© 2020 DotNetHeaven. All rights reserved.