Difference between revisions of "H1 to h6 (HTML elements)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(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...")
 
(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>
+
<h2>Header Two (A)</h2>
  <h3>Header Three (A)</h3>
+
<h3>Header Three (A)</h3>
  <h2>Header Two (B)</h2>
+
<h2>Header Two (B)</h2>
  <h3>Header Three (B)</h3>
+
<h3>Header Three (B)</h3>
  <h3>Header Three (C)</h3></nowiki>
+
<h3>Header Three (C)</h3></nowiki>
  
 
== See also ==
 
== See also ==

Latest revision as of 12: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