HTML Tags | Important HTML tags | Mostly Used HTML Tags

 HTML Tags:



HTML Tags | Important HTML tags | Mostly Used HTML Tags | All HTML Tags 2021

Some Basic HTML Tags:

Some mostly used and basic HTML tags are with their description are:

HTML Tags | Important HTML tags | Mostly Used HTML Tags

<!DOCTYPE > Declaration:
This defines the document type and helps browsers to show web pages without any error. This tag must be written once at the top of the coding while writing a code. but this declaration is not case sensitive. All the other tags are written after this tag. 

HTML Tags | Important HTML tags | Mostly Used HTML Tags
All other tags are used inside this <html> and </html>. The body tag shows the visible part of the document (images, paragraphs, and others). 

HTML Code for title:

For example, if want to show our page title as the First web page. The code for the page title is,

<title>First web page</title>

The result will be shown as.

HTML Tags | Important HTML tags | Mostly Used HTML Tags

HTML Code For Headings:

<h1>Heading</h1>
<h2>Heading</h2>
<h3>Heading</h3>
<h4>Heading</h4>
<h5>Heading</h5>
<h6>Heading</h6>

<h1> tag is most important and  mostly used, but <h6> tag is least important.

HTML Tags | Important HTML tags | Mostly Used HTML Tags


HTML Code for paragraph:

<p>First Paragraph</p>
<p>Second Paragraph</p>
<p>Third Paragraph</p>

HTML Tags | Important HTML tags | Mostly Used HTML Tags

HTML Code for line break:

<br>

this is another important tag has no end tag and is mostly used in text where want to show line break.

HTML Tags | Important HTML tags | Mostly Used HTML Tags

HTML Code for horizontal line:

<hr> 

Note:this tag has no end tag.

HTML Tags | Important HTML tags | Mostly Used HTML Tags

HTML Code for Comment:

<!-- the text you want to hide-->

HTML Tags | Important HTML tags | Mostly Used HTML Tags

In the above figure, the text written in <p> tag is not displaying to the page visitors.