Difference between revisions of "H1 to h6 (HTML elements)"
From Wiki @ Karl Jones dot com
Karl Jones (Talk | contribs) (Created page with "In HTML, the element '''h1''' represent headings for their sections. == Description == The heading elements form a hierarchy. h1 delimits the highest-level...") |
Karl Jones (Talk | contribs) (→Examples) |
||
Line 10: | Line 10: | ||
<nowiki><h1>This is Header One text.</h1> | <nowiki><h1>This is Header One text.</h1> | ||
− | + | <h2>Header Two (A)</h2> | |
− | + | <h3>Header Three (A)</h3> | |
− | + | <h2>Header Two (B)</h2> | |
− | + | <h3>Header Three (B)</h3> | |
− | + | <h3>Header Three (C)</h3></nowiki> | |
== See also == | == See also == |
Latest revision as of 11:50, 1 May 2016
In HTML, the element h1 represent headings for their sections.
Description
The heading elements form a hierarchy.
h1 delimits the highest-level heading, h2 the next level down (sub-section), h3 for a level below that, and so on to h6.
Examples
<h1>This is Header One text.</h1> <h2>Header Two (A)</h2> <h3>Header Three (A)</h3> <h2>Header Two (B)</h2> <h3>Header Three (B)</h3> <h3>Header Three (C)</h3>
See also
External links
- h1, h2, h3, h4, h5, and h6 @ w3.org
- Heading elements @ developer.mozilla.org
- h1 to h6 @ w3schools.com