Welcome to W3Courses

Adding Lists

Adding Lists in Html Code

Lists can be added in html programming by using the following source code

Ordered List
<ol>  <!-- starting -->
         <li> first  </li>
         <li> second  </li>
</ol>  <!-- end list -->

0