0% found this document useful (0 votes)
9 views

Unordered HTML Lists

An unordered list in HTML uses the <ul> tag to begin the list and <li> tags for each list item. List items in an unordered list are marked with bullet points instead of numbers. For example, a simple unordered list may contain <li> tags for Coffee, Tea, and Milk inside <ul> and </ul> tags.

Uploaded by

Alex Mociran
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
9 views

Unordered HTML Lists

An unordered list in HTML uses the <ul> tag to begin the list and <li> tags for each list item. List items in an unordered list are marked with bullet points instead of numbers. For example, a simple unordered list may contain <li> tags for Coffee, Tea, and Milk inside <ul> and </ul> tags.

Uploaded by

Alex Mociran
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

Unordered HTML Lists

An unordered list starts with the <ul> tag. Each list item starts with
the <li> tag.
The list items will be marked with bullets (small black circles):

Example
<ul>
<li>Coffee</li>
<li>Tea</li>
<li>Milk</li>
</ul>

You might also like