html ordered list - html unordered numbered lists
HTML (HyperText Markup Language) is the code that is used to structure a web page and its content. For example, content could be structured within a set of html paragraph, a list in html of bulleted points, or using images and data tables.
There are three list types in HTML:
unordered list — used to group a set of related items in no particular order.
ordered list — used to group a set of related items in a specific order.
description list — used to display name/value pairs such as terms and definitions.
An html unordered list typically is a bulleted list of items. HTML 3.0 gives you the ability to customize the bullets, to do without bullets and to wrap list items horizontally or vertically for multicolumn lists. The opening list tag must be <UL>.
To create unordered list in HTML, use the <ul> tag. The html unordered numbered lists starts with the <ul> tag. The list item starts with the <li> tag and will be marked as disc, square, circle, etc. The default is bullets, which is small black circles.
There can be 4 types of bulleted list:
disc.
circle.
square.
none.
You create an unordered list using the ul tag. Then, you use the li tag to list each and every one of the items you want your list to include. tag. This means that the li tag is the child of the ul tag.














