<!DOCTYPE html>
The documents of HTML contains all tags between <HTML>
</HTML>
tag only.
The another important tag in HTML document is <body>
</body>
. Visibility of the web page is enclosed in this tag only.
In below example explain the basic HTML tags.
[html]
<html>
<head>
<title> Tilte tag use to mention page title </title>
</head>
<body>
<p>'P' tag is used to write paragraphs</p>
<h1>This tag is used write headings</h1>
<h2>This tag is used write headings</h2>
<h3>This tag is used write headings</h3>
<h4>This tag is used write headings</h4>
<h5>This tag is used write headings</h5>
<h6>This tag is used write headings</h6>
<a href="http://www.splessons.com/" >Anchor tag is used in navigation</a>
<br /> for break between the lines
<img src="http://www.splessons.com/wp-content/uploads/2015/06/splessons-logo.png" alt="Logo" /> <!-- img tag used to display images in web page.-->
</body>
</html>
[/html]
Result
By running the above code in a preferred browser user can get the following output as shown in below image.
In order to build the basic document user need to use the basic tags of the html as shown below.