[Home]
[Edit this page]
[Recent Changes]
[Special Pages]
[Help]
HTMLSPEC-HEADINGS
Character text heading sizes used to describe the appearance of text. HTML has six levels of text form heading, from 1 to 6, with 1 being the most prominent (largest) level.
Attributes
Code Tip
The <h(1-6)> tag is a standard way of displaying document heading text, but for complex web pages needing a crisp, clean look, use an element with more power such as style, font, or css (cascading style sheets).
Live Example
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
HTMLSPEC-HEADINGS
Header
UsageCharacter text heading sizes used to describe the appearance of text. HTML has six levels of text form heading, from 1 to 6, with 1 being the most prominent (largest) level.
Attributes
align=" left || center || right "Specifies the horizontal alignment of internal content.
Code Tip
The <h(1-6)> tag is a standard way of displaying document heading text, but for complex web pages needing a crisp, clean look, use an element with more power such as style, font, or css (cascading style sheets).
Live Example
<html> <head><title>Text Heading Document Example</title></head> <body> <font size=2pt face="arial"> <h1>H1 Heading Size</h1><br> <h2>H2 Heading Size</h2><br> <h3>H3 Heading Size</h3><br> <h4>H4 Heading Size</h4><br> <h5>H5 Heading Size</h5><br> <h6>H6 Heading Size</h6><br> </font> </body> </html>
HTML Tags Center
[Edit this page] [Page history] [What links here] [Discuss this topic] [Printer Friendly]
