Headings

Section 1 - Introduction
Section 2 - Basics
      Your first page
      Formatting
         Paragraphs
         Divisions
         Headings
         Alignment
         Breaks
         Horizontal Lines
         You Try It!
      Text tricks
      Pictures
      Links
      Backgrounds
Section 3 - Next Level
Section 4 - Advanced
Section 5 - Publishing
Section 6 - Extras
Appendices
Headings
TAGS USED: <h1> and </h1>, <h2> and </h2>,<h3> and </h3>,
<h4> and </h4>,<h5> and </h5>,<h6> and </h6>
Here's a useful tag to know. This tag is used to make titles or headings within the body of the document. Headings are bold and separated from other text by a space. You can also specify the size you'd like the heading to be. Size 1 is the largest and size 6 is the smallest. Here's a demo.
Code:
<h1>Heading One</h1>
<h2>Heading Two</h2>
<h3>Heading Three</h3>
<h4>Heading Four</h4>
<h5>Heading Five</h5>
<h6>Heading Six</h6>
What You See

Heading One

Heading Two

Heading Three

Heading Four

Heading Five
Heading Six
Headings are usually used to put titles on a page. When you make a heading, it will create space around the title, become bold and change the size of the text.
Back Home Forward