Powered by Blogger.

Monday 26 December 2016

How to make list using HTML


Lists are used to group some related information together you can use ordered list or unrecorded lists as your requirement. lets start to learn how we make list using HTML.
For unrecorded list:
<ul>
 <li>List Item One </li>
 <li>List Item two</li>
 <li>List Item Three</li>
 <li>List Item Four </li>
 <li>List Item Five </li>
 .....
</ul> 

For orecorded list:
<ol>
 <li>List Item One </li>
 <li>List Item two</li>
 <li>List Item Three</li>
 <li>List Item Four </li>
 <li>List Item Five </li>
 .....
</ol> 

Output:
If any query please leave a comment I will back to you soon:

0 comments:

Post a Comment