HTML List

When we need list in our website , we must use list tag in our website

There are two types of list
  1.   Ordered List
  2.   Un ordered list

Ordered list is one order and un ordered list not order

Here some example of list:

 <html>



    <head>

             <title> My Test Title </title>

    </head>


   <body>

   <!-- Comment tag start exclamation mark that browser not read comments -->
  
   <!-- Head Tag -->
        <h1> My Test Table </h1>
  

 <!-- Break line Tag -->  
        <br />  
       
   
  <!-- Un Order List  -->
     <ul>
        <li>Book</li>
        <li>Computer</li>
        <li>Notepad</li>
     </ul>


 <!-- Break line Tag -->  
        <br />


 <!--  Order List  -->
     <ol>
        <li>Book</li>
        <li>Computer</li>
        <li>Notepad</li>
     </ol>




       
       

    </body>



</html>





The result will look like below:


No comments:

Post a Comment