Project 2
Index
-Headers
-Lists
-Nested Lists
This is my Project 2. It will demonstrate Headers, Lists, and Nested Lists.
Headers
These are the 6 levels of Headers:
This is Heading level 1.
This is Heading level 2.
This is Heading level 3.
This is Heading level 4.
This is Heading level 5.
This is Heading level 6.
Lists
In this section I will demonstrate lists.
Here is an Ordered List. Ordered lists are used to list things which have a definite order. Ordered lists use <OL> tag. Through the use of the <LI> tag, the numbers on the list are automatically generated.
- Item #1
- Item #2
- Item #3
- Item #4
Here is an Unordered List. Unordered lists are used to list things which do not have a definite order. Unordered lists use <UL> tag.
Here is a Definition list. Unlike other lists, Definition lists have a sub-category for the definition. Definition lists use the <DL> tag. For the item you use the <DT> tag and for the Definition you use the <DD> tag.
- Item
- Definition of Item
- Item
- Definition of Item
- Item
- Definition of Item
Nested Lists.
To nest an Unordered List inside of an Ordered list you simply use the individual tags for both inside one another, making sure to close them.
The example I will use is a shopping list.
- Apples
- Granny Smith
- Red Delicious
- Macintosh
- Soda
- Bananas
Click Here to go to the Top of the Page.