What Is an Unordered List?
An unordered list is a collection of list items in no particular order, also known as an item list. In an unordered list, each list belongs to a side-by-side relationship. There is no sequence order, and they are marked with a bullet. Using the type attribute of the unordered list tag ul (using CSS list-style instead), the user can specify the style of the bullets that appear before the list items, mainly: disc (solid dots), circle (hollow dots) , Square (solid squares), none (no bullets).
- A list refers to a table in which related materials are arranged in an orderly manner or without being arranged in a web page. Common
<ul> <li> List item 1 </ li> <li> List item 2 </ li> ... <li> List item n </ li> </ ul>
- 1. in
Specific procedures for unordered lists
<html> <body> <h4> An Unordered List: </ h4> <ul> <li> Coffee </ li> <li> Tea </ li> <li> Milk </ li> </ ul> </ body> </ html>
Unordered list browser display results
- An Unordered List:
- Coffee
- Tea
- Milk [2]