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

 

Body Backgrounds

Sometimes opening tags will have attributes and values.  These tags help define the tags even further.  For example, when it comes to the background of a page, you'll need to add attributes. The formula for attributes is:

attribute="value"

As shown above, the attribute must be connected to the value with an equal sign and the value must be placed in quotes.

Background Colors

To change the color of the background of your page insert the bgcolor attribute into the opening body tag, like so:


<body bgcolor="#FFFF99">
</body>

You can also insert and image as the background. To do this insert the background attribute, like so:


<body background="bricks.gif">
</body>

Next Lesson

© Copyright Studio6000 2006. All rights Reserved.