Thursday, 30 May 2013

Unordered list: HTML

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

Syntax:

<ul>
    <li>Bike</li>
    <li>Bus</li>
    <li>Car</li>
</ul>
 
Output:
  • Bike
  • Bus
  • Car

No comments:

Post a Comment