Thursday, 30 May 2013

Create ordered list: HTML

The syntax to create an ordered list in an HTML page is given below:

Syntax:

<ol>
    <li>Bike</li>
    <li>Bus</li>
    <li>Car</li>
</ol>
 
Output: 
  1. Bike
  2. Bus
  3. Car

No comments:

Post a Comment