Inserting Bullets in HTML
Inserting Bullets in HTML
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
Set as favorite
Bookmark
Email This
Hits: 329
Comments (0)

Write comment
| < Prev | Next > |
|---|
Donations
Donations are greatly appreciated and allow us to continue developing new extensions and templates.
