HTML Table

HTML Table always useful for website and webpage

in many form and division of a webpage HTML Table is useful

Here are some example of HTML Table:

<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 />  
       
   
  <!-- Table Tag -->
    <table border="1">
          
           <tr>
               <td>
                   Name
               </td>
               <td>
                
                  <input type="text" />
               </td>
              
           </tr>
             <tr>
               <td>
                  Last Name
               </td>
               <td>
                
                  <input type="text" />
               </td>
              
           </tr>
        </table>




       
       

    </body>



</html>




And result will look like:


No comments:

Post a Comment