Home Html List
List
How to Put List in Html

There are types of lists available in Html Ordered List, Unordered List, and Definition List.

Unordered List

For Unordered List use <ul> tag (unordered list) along with the <li> tag (for each list item)
Unordered list written by the following way:

<ul>
<li>Coffee</li>
<li>Milk</li>
</ul>

Result will be

  • Coffee
  • Milk

Ordered List

For ordered list use <ol> tag along with the <li> tag.
Ordered list written by the following way:

<ol>
<li>Coffee</li>
<li>Milk</li>
</ol>

Result will be

  1. Coffee
  2. Milk

 


Featured Articles

Adobe Illustrator
  Adobe IllustratorLearn drawing technique, text effect, 3D graphic & more refer Illustrator Tutorial.
Adobe Dreamweaver
Adobe Dreamweaver If you want to learn to design website learn through our Dreamweaver Tutorial.
CSS (Cascading Style Sheets)
Css Save your time for website designing and speed up your work by using CSS.