HTML Headings

Headings In HTML :

<h1> to <h6> commands are  use for the Headings in HTML.
<h1> becomes the most crucial heading. <h6> becomes the least important heading.

Example :

<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>

importance of Heading :

Use HTML headings for headings only. Don’t use headings to create text BIG or strong.
Search motors use your headings to index the design and material of your online pages.
Since customers might skim your pages by their headings, it is very important to make use of headings to show the file structure.
H1 headings should be properly used as main headings, followed closely by H2 headings, then a less essential H3 headings, and so on.

HTML Lines :

The <hr> command creates a horizontal line in a HTML page.


The hr element can be used to separate your lives content :


Example:

<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>
<hr>
<p>This is a paragraph.</p>

Comments In HTML :

Comments could be put to the HTML rule to create it more understandable and understandable. Comments are dismissed by the visitor and are not displayed.
Comments are published similar to this:

<!– This is a comment –>

Tag Reference of HTML :

Tag                        Description

<html>                Identifies an HTML report.
<body>              Identifies the document’s body.
<h1> to <h6>    Identifies HTML headings.
<hr>                   Identifies  horizontal line.
<!–>                  Identifies a comment.


Leave a Reply

Your email address will not be published. Required fields are marked *