Lists
- Unordered Lists (bullets):
Code:
<ul>
<li>(list item)
<li>(list item)
</ul>
Options:
<li type="circle">
Types: circle, disc, square - default is disc (filled-in circle)
- Ordered Lists (numbered lists or for outlines) - keeps track of the counting for you, so if you insert an item in the middle of the
list, you do not need to renumber the list.
Code:
<ol>
<li>(list item)
<li>(list item)
</ol>
Options: - you'll have to define the type on each list item that you want to appear with that type. However, you only need to use the one reference (type="a") - you don't need to keep track by adding type="b", etc.
<li type="A">
Types: 1,A,a,I,i - default is regular numbers (1,2,3)
- 1
- A
- a
- I
- i
- Definition Lists
Definition Lists have an automatic formatting for the purpose of terms and definitions.
- <dt>Definition Term</dt>
- <dd>Definition text text text text text text
text text text text text text text text text text text text
text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text text </dd>
Class Outline
Back to Images
View Example Site