HTML #5 - HTML Headings Introduction and How to use
Hello friends, welcome to the another tutorial of Programming Infinity. This is the 5th tutorial of HTML Programming Series. In this tutorial, we will know about the Headings. We will cover its Introduction, uses, and how to use in this tutorial. by the end of this tutorial, we will know everything about HTML Headings. So friends, let's begin..
HEADINGS
<h1> Heading 1 </h1>
<h2> Heading 2 </h2>
<h3> Heading 3 </h3>
<h4> Heading 4 </h4>
<h5> Heading 5 </h5>
<h6> Heading 6 </h6>
<h2> Heading 2 </h2>
<h3> Heading 3 </h3>
<h4> Heading 4 </h4>
<h5> Heading 5 </h5>
<h6> Heading 6 </h6>
Headings are the useful element in the HTML. They are defined with <h1> to <h6> tags. H1 means the most important heading, whereas H6 means the least important heading.
Uses :-
1. It is used by search engines to index the structure and the content of the web page on the search page.
2. It helps users to easily navigate the page and easily know about the web page content. It is used to define the document visible readable structure.
Used as :-
The syntax of using Headings is given above form h1 to h6. Only need is there to replace the content with the required one and use the desired Headings according to requirements.
Note :-
1. The size of the heading is bydefault set by the browser itself, but we can change it using css. We will know about CSS in the another tutorial.
2. The Headings are used only for the desired needs not to make text bold or big. For this, we should use <b> tag.
So friends, that's all for today tutorial. hope you enjoyed this tutorial. If you have any questions, then ask me in comment box.
Thanks -
Programming Infinity ( Samridh Sharma )
Comments
Post a Comment