HTML 4 Kids: Lesson Week 2
Document Formatting
- The Body Tag
- <body>
-
- Additional Attitributes
- bgcolor="ivory"
- text="purple"
- link="blue"
- vlink="orange"
-
- For "wallpaper" use a graphic file for the background color
- background="wallpaper.gif"
-
- examples:
- <body bgcolor="ivory" text="purple" link="blue" vlink="orange">
- <body background="wallpaper.gif" text="purple" link="blue" vlink="orange">
Lists
- Ordered list
- <ol>
- <li>apples</li>
- <li>oranges</li>
- </ol>
- Unordered list
- <ul>
- <li>apples</li>
- <li>oranges</li>
- </ul>
- Definition list
- <dl>
- <dt>Fruit </dt>
- <dd> A major food group that includes foods such as apples, oranges and bannanas.</dd>
- </dl>
- List Item
- <li>apples</li>
Return