As you see in this web page, the section headings ("Headings -- Six Levels Deep", "Objectives", "Lesson", "HTML Headings" ...) appear as different sizes and, perhaps, different colors and fonts. HTML provides tags for designating headings in six levels of significance. Your browser determines the exact font and size for display.
After this lesson, you will be able to:
You created headings in HTML by "tagging" certain chunks of text with heading tags. The format for an HTML heading tag is:
<hN>Text to Appear in Heading</hN>
where N is a number from 1 to 6 identifying the heading size. Here are some examples of different heading sizes:
Heading Level 1Heading Level 2Heading Level 3Heading Level 4Heading Level 5Heading Level 6 |
Heading levels range from level 1 (Most Important) to level 6 (Least Important). Like an outline, your heading levels should have logical, consistent order and be parallel.
<h1>Volcano Web</h1>
<h2>Introduction</h2> <h2>Volcano Terminology</h2> <h2>Volcanic Places in the USA</h2> <h3>Mount St Helens</h3> <h3>Long Valley</h3> <h2>Volcanic Places on Mars</h2> <h2>Research Project</h2> <h3>References</h3>
Note that on the computer you are using now, you can use the settings in your web browser to define the fonts and/or size of the headings. For example, on one computer you could have a browser display h1 tags as Times font and 36 point; h2 tags as Helvetica font and 24 point, etc. HTML codes designate only that the headers are of a certain type (h1 to h6); how it is displayed is controlled by the user of the web browser.