Monday, 11 July 2016

ADD LIST TO WEB PAGE

<html>
<head>
<title>
 WEB DESIGNING
 </title>
 </head>

 <body bgcolor="grey">
  <center> <font color="green" size="6">ADDING UNORDERED LIST TO PAGE </font></center>
  <br>

  <ul> <font size="6">
  <li> list number 1 </li>
  <li> list number 2 </li>
  <li> list number 3 </li>  </font>
  </ul>

  <br><center><font size="6" color="green"> ADDING UNORDERED LIST IN SQUARE TYPE </font></center>
  <br>
  <ul type="square">  <font size="6">
  <li> list number 1 </li>
  <li> list number 2 </li> </font>
  </ul>

  <br><center><font size="7" color="blue"> ADDING ORDERED LIST TO PAGE </font></center>
  <br>
  <ol> <font size="6">
  <li> list number 1 </li>
  <li> list number 2 </li> </font>
  </ol>

     <br><center><font size="7" color="blue"> ADDING ORDERED LIST in user choice order </font></center>
<br>
 <ol> <font size="6">
  <li value="5"> list number 1 </li>
  <li value="10"> list number 2 </li>
  <li value="20"> list number 3 </li> </font>
  </ol>


  </body>
  </html>





No comments:

Post a Comment