List samples |
|
Ordered list |
|
These are html tags you type. <p> This paragraph is text before the list. </p> <ol> <li> First item text </li> <li> Second item text </li> </ol> <p> This paragraph is text after the list. </p> Note:
|
This is the resulting web page content: This paragraph is text before the list.
This paragraph is text after the list. |
Unordered list |
|
These are html tags you type. <p> This paragraph is text before the list. </p> <ul> <li> First item text </li> <li> Second item text </li> </ul> <p> This paragraph is text after the list. </p> Note: The tags for an unordered list are like the ordered list, except use <ul> rather than <ol> |
This is the resulting web page content: This paragraph is text before the list.
This paragraph is text after the list. |