Bullet points There are 2 types of bullet points. You have an unordered list, which just uses standard bullets, and you have ordered lists, which are either a list of numbers, letters or roman numerals. We will start with standard bullet points, which is an Unordered List. The tag for this is <ul> which stands for unordered list funnily enough. Next we have the Ordered List, which uses the <ol> tag. So you have your <ul> and <ol> tags and your closing </ul> and </ol> tags. How do you add bullets/numbers inbetween? We use the list tag, which is represented by <li> and must always be closed with </li> Here is an example of an unordered list: <ul> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ul> Here are a few examples of ordered lists: First we will look at numbers, which is the default for ordered lists. <ol type="1"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ol> Now we have letters this just runs through the alphabet from A to Z. <ol type="a"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ol> Roman numerals use the same principal. <ol type="i"> <li>Item 1</li> <li>Item 2</li> <li>Item 3</li> <li>Item 4</li> </ol> For a live examples click here |