HTML HEADINGS
Headings are define with the <h1> to <h6>
HTML HEADINGS Are Important
Search engines use the headings to index the structure and content of your web pages.
Users skim your pages by its headings. It is important to use headings to show the document structure.
<h1> headings should be used for main headings or the followed by
<h2> headings the less important <h3> and so on.
Example
<h1>Heading 1</h1>
<h2>Heading 2</h2>
<h3>Heading 3</h3>
<h4>Heading 4</h4>
<h5>Heading 5</h5>
<h6>Heading 6</h6>Large Headings
Each HTML heading has a default size. However, you can specify the size for any heading with the style attribute, using the CSS font-size property:
Example
Horizontal Rules
The <hr> tag defines a thematic break in an HTML page, and it is most often display as a horizontal rule.
Example
How to View HTML Source?
Have you ever seen a Web page and wondered "Hey! How did they do that?"
Right-click in an HTML page and select "View Page Source" (in Chrome) or "View Source" (in IE), or similar in other browsers. This will open a window containing the HTML source code of the page.
Right-click on an element (or a blank area), and choose "Inspect" or "Inspect Element" to see what elements are made up of (you will see both the HTML and the CSS). You can also edit the HTML or CSS on-the-fly in the Elements or Styles panel that opens.
(shortcut key ctrl + shift + I ) or (ctrl + U )
Some content coming soon......
HTML Headings.........