HTML Lessons  

  1. HTML Introduction

  2. HTML Tags

  3. HTML Page Structure

  4. HTML Backgrounds

  5. HTML Formatting Text

  6. HTML Formatting Fonts

  7. HTML Headings

  8. HTML Entities

  9. HTML Line Breaks

  10. HTML Lists

  11. HTML HR- Horizontal Rule

  12. HTML Images

  13. HTML Links

  14. Table Introduction

  15. Table Rows & Columns

  16. Table Width

  17. Table Alignment

  18. Table Border Color

  19. Table Background Color

  20. Table Background Image

  21. Cell Alignment

  22. Cell Padding

  23. Cell Spacing

  24. Cell Spanning

 

Headings

Headings are a pretty useful tool to help organize your topics and they come in sizes 1-6.

Here are all of the header tags

Code Result
<h1>This is a Heading 1</h1>

This is a Heading 1

<h2>This is a Heading 2</h2>

This is a Heading 2

<h2>This is a Heading 3</h3>

This is a Heading 3

<h2>This is a Heading 4</h4>

This is a Heading 4

<h2>This is a Heading 5</h5>
This is a Heading 5
<h2>This is a Heading 6</h6>
This is a Heading 6

Notice how, the lower the header number the larger it will appear. 

You can also align your headers right, left or center.  To to this simply add the align attribute, as follows:

<h3 align="right">This is a Heading 3</h3>

<h3 align="center">This is a Heading 3</h3>

<h3 align="left">This is a Heading 3</h3>

The code above will appear as:

 

 

Next Lesson

© Copyright Studio6000 2006. All rights Reserved.