<html> <head> <title>Ordered list</title> </head> <body> Ordered list <ol> <li>Car</li> <li>Bicycle</li> <li>Aeroplane</li> <li>Bus</li> </ol> </body> </html>
for more examples http://makeitsimple.co.in/HTML_programs.php
<html> <head> <title>Ordered list</title> </head> <body> Ordered list <ol> <li>Car</li> <li>Bicycle</li> <li>Aeroplane</li> <li>Bus</li> </ol> </body> </html>
for more examples http://makeitsimple.co.in/HTML_programs.php
<html> <head> <title>Unordered List</title> </head> <body> Unordered list <ul> <li>Peacock</li> <li>Parrot</li> <li>Sparrow</li> <li>Swan</li> <li>Pigeon</li> </ul> </body> </html>
for more examples http://makeitsimple.co.in/HTML_programs.php
<html> <head> <title>Text formatting tags</title> </head> <body> <b>Bold text</b> <i>Italic text</i> <u>Underlined text</u> <strong>Strong text</strong> <sup>Super script</sup> <sub>Sub script</sub> </body> </html>
for more examples http://makeitsimple.co.in/HTML_programs.php