Saturday 11 January 2014

Unordered list: example

<html>
<head>
<title>Program on Lists</title>
</head>
<body>
<basefont size=4 color=blue>
<h1 align=center>
<font color=red> Ordered & Unordered Lists </font>
</h1>
<ol align=center type=1> <b> <font color=red> Months of an Year </font> </b>
<li> January </li> <br>
<li> February </li> <br>
<li> March </li> <br>
<li> April </li> <br>
<li> May </li> <br>
<li> June </li> <br>
<li> July </li> <br>
<li> August </li> <br>
<li> September </li> <br>
<li> October </li> <br>
<li> November </li> <br>
<li> December </li> <br>
</ol>
<ul align=center type=square><b><font color=red>Days of a Week</font></b>
<li> Sunday </li> <br>
<li> Monday </li> <br>
<li> Tuesday </li> <br>
<li> Wednesday </li> <br>
<li> Thursday </li> <br>
<li> Friday </li> <br>
<li> Saturday </li> <br>
</ul>
</body>
</html>

No comments:

Post a Comment