[Home]

Making Lists :

Want to make a bulleted or a numbered list? Here is how.

When making a list you will use the following code:

<ol> = start numbered list
</ol> = end numbered list

<ul> = start bullet point list
</ul> = end bullet point list

<li> = start new list item
</li> = end new list item

1. Using the above code you can make a bulleted list:


2. That will look like this:


3. To make a numbered list replace <ul> and </ul> with <ol> and </ol>

4. You can insert links to make a list of links in the normal way.


5. Which looks like this:


[Home]