ul element
<UL> (Unordered List Element)
Explanation
UL element creates an "Unordered or bulleted lists" in a HTML document.
It is used along with the <li> to specify the list items.
Example Code:
Result :
Who is the present coach of Real Madrid?
- Alex Ferguson
- Jose Mourinho
- Arsene Wenger
- It is mandatory to add <li> with this element.
- To build "Ordered Lists", the <ol> can be used.
- CSS can be used to style the list items.
It is available in the previous versions of HTML.
It supports both
Global Attributes and
Event Attributes in HTML5.
Limitations:
It is applicable to all the browsers.