HTML <ul> Unordered List Tag Reference
The ul HTML tag creates an unordered list of items.
In normal text, an unordered list will appear as a bulletd list, but they can take many different forms.
The ul HTML tag creates an unordered list of items.
In normal text, an unordered list will appear as a bulletd list, but they can take many different forms.
The <ul> tag defines an unordered list:
In normal text, in a visual browser, a <ul> will by default appear as a bulleted list, whereas an ordered list (<ol>) tag will create items bearing numbers or letters to show the significant order.
Use <ul>s whenever you have any sequence of more than one related HTML elements.
Common appropriate applications of unordered lists include:
(I would not use unordered lists for inline comma-separated lists within normal text, as these would not naturally be displayed as a standalone collection of bulleted items.)
<ul> is valid in all current versions of HTML and xHTML, and it should always have a closing </ul> tag.
It may contain only <li></li> (list item) tags, which in turn can contain other HTML tags and content.
This is a simple example.
You may also consider using:
Do you love our approach to crafting simple & effective web sites that just work for people?
We'd love to hear about your web strategy.
Contact one of our team today!
<li>Orinocho</li>
<li>Great Uncle Bulgaria</li>
</ul>