How do I add bullets?There are other small page elements that can be useful, not to mention livening up your page. Here you'll learn about ordered and unordered lists and how to make vertical and horizontal bars.
 Ordered ListAn ordered list is very simple a numbered list, where each part of the line is the next ordered number. When you use the code below, your list will look like this, then just change the information to suit your own needs.
<ol>
You can start the list at whatever number you would like, just be defining the number, like this.
<ol start="10">If you want the list to appear in roman numerals, you would use this code.
<ol type="I">If you want the list to appear in an alphabetical list, you would use this code.
<ol type="A">
 Unordered ListAn unordered list is also called a bulleted list, or bullets. Use the code below to create a list that looks like this.
<ul>Here's another way to add bullets.
<ul type="circle">Here's another way to add bullets.
<ul type="square">Here's another way to add bullets.
<ul style="list-style-image: url(URL OF YOUR IMAGE)">
 Horizontal BarsA horizontal bar, like shown below, is just a simple html divider, used for seperating content on a webpage. You can define the height, width and color of a bar, by using the following code.
<hr width="300" height="10" color="black">
 Vertical BarsA vertical bar is just a simple html divider, used for seperating content on a webpage. You can define the height, width and color of a bar, by using the following code.
<hr width="2" color="black" size="200">
|