Home : Basic HTML/CSS tutorial : Text expression : Bullet-point lists
Introduction
Emphasis
Bullet-point lists
Within-page linking
Example
Summary
< Previous: Emphasis

Bullet-point lists

Bullet-point lists are created using the <ul> ("unordered list") tag instead of <p>. Within this tag, <li> ("list item") tags contain each item in the list.

Example list

<ul>
<li> First item</li>
<li> Second item</li>
<li> Third item</li>
</ul>