HTML
|
JavaScript
Alignment
Basics
Character Codes
Colors
CSS
DIVS
Forms
Frames
Links
Lists and Bullets
Meta Tags
Multimedia
Pictures
Spacing
Tables
Text
Adding Text
Align Text
Marquee
Text Color
Text Font
Text Headers
Text Links
Text Size
Text Spacing
Text Styles
Text Headers
233
Level 1 Header
Description
The tag for this header is <H1>. The starting tag is <H1> and the closing tag is </H1>. This header is used at the top of pages to title the page. Here is an example using the Level 1 Header.
Code
<h1> Hello World! </h1>
Output
Hello World!
Practice
<h1> Hello World! </h1>
Level 2 Header
Description
The tag for this header is <H2>. The starting tag is <H2> and the closing tag is </H2>. This header is used to separate secondary parts of the page. Here is an example using the Level 2 Header.
Code
<H2> Hello World! </H2>
Output
Hello World!
Practice
<H2> Hello World! </H2>
Level 3 Header
Description
The tag for this header is <H3>. The starting tag is <H3> and the closing tag is </H3>. Here is an example using the Level 3 Header.
Code
<H3> Hello World! </H3>
Output
Hello World!
Practice
<H3> Hello World! </H3>
Level 4 Header
Description
The tag for this header is <H4>. The starting tag is <H4> and the closing tag is </H4>. Here is an example using the Level 4 Header.
Code
<H4> Hello World! </H4>
Output
Hello World!
Practice
<H4> Hello World! </H4>
Level 5 Header
Description
The tag for this header is <H5>. The starting tag is <H5> and the closing tag is </H5>. Here is an example using the Level 5 Header.
Code
<H5> Hello World! </H5>
Output
Hello World!
Practice
<H5> Hello World! </H5>
Level 6 Header
Description
The tag for this header is <H6>. The starting tag is <H6> and the closing tag is </H6>. Here is an example using the Level 6 Header.
Code
<H6> Hello World! </H6>
Output
Hello World!
Practice
<H6> Hello World! </H6>
Advertisements