HTML TUTORIAL


HTML Unordered Lists

The HTML unordered lists are lists of items displayed with a dot circle before them. The HTML Unordered lists are created with <ul> tag. Each list is enclosed with a pair of <li> and </li> . Let us see the example below

<ul>
<li>Bill Clinton</li>
<li>George Bust</li>
</ul>

If you open it in the browser, it will look like this

The Ordered List


The HTML ordered lists is also a lists of item. However they are displayed with serial numbers before them. The HTML Unordered lists are created with <ol> tag. As in unordered list, each list is enclosed with a pair of <li> and </li> . Let us see the example below
<ol>
<li>Bill Clinton</li>
<li>George Bust</li>
</ol>

The above example will give output as follows
  1. Bill Clinton
  2. George Bush


Practice Examples

You will like to practice more about links here.

Example - Various Types of Unordered List

Example - Various Types of Ordered List