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

 

HTML Tags

All HTML pages are formatted by using tags. Two facts about tags:
  1. Almost all tags contain a less sign (<) and a greater sign (>). 
  2. Almost all tags have an opening tag and a closing tag. You will learn which tags do not need a closing tag later in this tutorial.

Here are some examples of opening tags
<b>
<i>
<u>

Here are some examples of closing tags. The closing tag is exactly the same as the opening tag except it contains a forward slash.
</b>
</i>
</u>

Notice how each tag begins with a less sign (<) and ends with a greater sign (>).

Next Lesson

© Copyright Studio6000 2006. All rights Reserved.