|
HeadingsThe word headings about is a heading. Heading is like a title or a sub title that tells you what the page or section of the page is about. Heading is divided into six (6) different sizes. When informing that a text is a heading, we use the <h#> tag with </h#> tag in closing. The heading size we use for headings is size 1. Size 1 is the largest and size 6 is the smallest. Here are examples of headings beginning with the smalles to largest: Heading 6Heading 5Heading 4Heading 3Heading 2Heading 1Here are the codes for the Headings above:
<h6>Heading 6</h6>
<h5>Heading 5</h5> <h4>Heading 4</h4> <h3>Heading 3</h3> <h2>Heading 2</h2> <h1>Heading 1</h1>
So you type in h and then the size of the heading you want using numbers from 1 to 6. And then you type in what you want to be
the heading and then you use the closing tag (/h and then a number, the heading size that you used for your heading) to tell the
browser that anything after it is not a heading.
|