Kmspico Download | Official KMS Activator Website [New Version 2024] Fast and Easy Converter YouTube to MP3 Online KMSAuto Net Activator Download 2024 Immediate Byte Pro Neoprofit AI Blacksprut without borders. Discover new shopping opportunities here where each link is an entrance to a world ruled by anonymity and freedom.

Creating List in HTML Language

Creating List in HTML

A list in HTML start with a tag identifying the type of the list (<UL>, <OL> or <DL>) and each item of that list start with <LI> tag to denote the beginning of the list item. These tags have some attributes to design a desired list.Here we describe creating lists of various types.

1.Unnumbered List.

example:

 <ul type=circle>
 <li>pen</li>
 <li>ball</li>
 <li>note book</li>
 </ul>
 <ul type=square>
 <li>apple</li>
 <li>mango</li>
 <li>banana</li>
 </ul>

 

2.Ordered List.

 <ol>
 <li>pens</li>
 <li>ball</li>
 <li>note book</li>
 </ol>