Example
An unordered HTML list:<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>
Teach Yourself by BH24 HTML Editor Tool!
The <ul> tag is supported in all major browsers.
Definition and Usage
The <ul> tag defines an unordered (bulleted) list.Use the <ul> tag together with the <li> tag to create unordered lists.
Tips and Notes
Tip: Use CSS to style lists.Tip: To create ordered lists, use the <ol> tag.