| Example | Generating Code |
|---|---|
List
|
List <ol> <li>Item 1 <li>Item 2 <li>Item 3 <li>Item 4 </ol> |
| Example | Generating Code |
|---|---|
|
<ol start=5> <li>Item 5 <li>Item 6 <li>Item 7 <li>Item 8 </ol> |
The start parameter overrides the normal setting to allow you to have a list with a break in it or to start a list at a point higher than 1.
| Value | Style | Example |
|---|---|---|
| 1 | Arabic | 1,2,3... |
| A | Uppercase Alpha | A,B,C... |
| a | Lowercase Alpha | a,b,c... |
| I | Uppercase Roman | I,II,III... |
| i | Lowercase Roman | i,ii,iii... |
| Example List | Generating Code |
|---|---|
|
<ol
type=1> <li>Item <li>Item </ol> |
|
<ol
type=A> <li>Item <li>Item </ol> |
|
<ol
type=a> <li>Item <li>Item </ol> |
|
<ol
type=I> <li>Item <li>Item </ol> |
|
<ol
type=i> <li>Item <li>Item </ol> |
| Example | Generating Code |
|---|---|
|
<ol type=A> <li>First Category <ol type=1> <li>First Sub-Category <ol type=a> <li>Item <li>Item </ol> <li>Second Sub-Category <li>Third Sub-Category <li>Fourth Sub-Category </ol> <li>Second Category <li>Third Category <li>Fourth Category </ol> |
| Example | Generating Code |
|---|---|
|
<ul> <li>Item 1 <li>Item 2 <li>Item 3 <li>Item 4 </ul> |
| Example | Bullet Type | Generating Code |
|---|---|---|
|
Circle | <ol
type=circle> <li>Item <li>Item </ol> |
|
Square | <ol
type=square> <li>Item <li>Item </ol> |
|
Disc | <ol
type=disc> <li>Item <li>item </ol> |
| Example | Generating Code |
|---|---|
|
<dl> <dt>Term 1<dd>Definition 1 <dt>Term 2<dd>Definition 2 <dt>Term 3<dd>Definition 3 <dt>Term 4<dd>Definition 4 </dl> |
| Example | Generating Code |
|---|---|
|
<dl> <dt><b>Term 1</b><dd><i>Definition 1</i> <dt><b>Term 2</b><dd><i>Definition 2</i> <dt><b>Term 3</b><dd><i>Definition 3</i> <dt><b>Term 4</b><dd><i>Definition 4</i> </dl> |
|
<ol> <li><b>Item 1</b> <li><b>Item 2</b> <li><b>Item 3</b> <li><b>Item 4</b> </ol> |
|
<ul> <li><u>Item 1</u> <li><u>Item 2</u> <li><u>Item 3</u> <li><u>Item 4</u> </ul> |
| This page is maintained by Troy S. Cash, a computer Instructor at NWACC. If you have any Suggestions, Complaints, Comments about this page then you can e-mail him by clicking on the pen and paper. |