Thursday, 30 October 2014

Program to create a Ordered list

<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

Program to create a Unordered list.

<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

Program to describe various text formatting Tags

<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