| HTML Code | Result |
|---|
Unordered List (UL) Example
<UL>
<LI> This will be the first item
<LI> This will be the second item
<LI> This will be the last item
</UL>
|
Unordered List (UL) Example
- This will be the first item
- This will be the second item
- This will be the last item
|
Ordered List (OL) Example
<OL>
<LI> This will be item 1
<LI> This will be item 2
<LI> This will be item 3
</OL>
|
Ordered List (OL) Example
- This will be item 1
- This will be item 2
- This will be item 3
|
Definition List (DL) Example.
DT=Definition Term.
DD=Definition Definition.
<DL>
<DT> Free throw
<DD> A free shot taken after
a penalty...
<DT> Free throw Line
<DD> The line at which a
free throw...
</DL>
|
Definition List (DL) Example.
DT=Definition Term.
DD=Definition Definition.
- Free throw
- A free shot taken after a penalty...
- Free throw Line
- The line at which a free throw...
|
Nested List (UL/OL) Example
<UL>
<LI> Get in the Car
<OL>
<LI> Put key in door lock.
Turn to unlock
<LI> Pull on door handle
<LI> Sit down in driver's
seat
</OL>
<LI> Start the car
<OL>
<LI> Put key in ignition
<LI> Turn key to Start
position
<LI> Hold until car starts
<LI> Let go of key when car
has started
</OL>
</UL>
|
Nested List (UL/OL) Example
- Get in the Car
- Put key in door lock. Turn to unlock
- Pull on door handle
- Sit down in driver's seat
- Start the car
- Put key in ignition
- Turn key to Start position
- Hold until car starts
- Let go of key when car has started
|