|
|
Free HTML Tutorial - Learn HTML
Inserting Bullets
You can insert bullets into your pages by simply using the <ul> (unordered list) and <li> (list item) codes.
<ul>
<li> Bullet 1 </li>
<li> Bullet 2 </li>
<li>Bullet 3 </li>
</ul>
The above code will create the standard, round bullet that looks like this:
- Bullet 1
- Bullet 2
- Bullet 3
If you would like an open-circle bullet, you can change the code slightly by adding an attribute to the <ul> tag. See below:
<ul type="circle">
<li> Bullet 1 </li>
<li> Bullet 2 </li>
<li> Bullet 3 </li>
</ul>
This will create an open-circle bullet. See below:
- Bullet 1
- Bullet 2
- Bullet 3

|
|