Free Guides
Language Tutorials

HTML ( Hyper Text Markup Language )
Adding bullets and lists
HTML provides webmasters an easy way to create attractive bullets and lists for listing things. Before anything else, here's an example of both:
- Bullet 1
- Bullet 2
- Bullet 3
- List 1
- List 2
- List 3
<ul>
<li>Bullet 1
<li>Bullet 2
<li>Bullet 3
</ul>
Creating lists
The syntax for (numbered) lists is very similar to bullets. Just substitute the <ul> tag with the <ol> tag:
<ol>
<li>List 1
<li>List 2
<li>List 3
</ol>