Page 108 - Computer Class 08
P. 108

Adding a Title to the Table

             We can add the title to the webpage. Title gives the name to the table.

             Look at the example given below.
             <html>

             <head>

             <title></title>
             </head>

             <body>

             <table>
             <TABLE  BORDER=“5”>

             <tr>

             <TH COLSPAN=“2”>
             <H3><BR>TABLE TITLE</H3>

             </th>

             </tr>
             <tr>

             <td>Name</td>

             <td>Age</td>
             </tr>

             <tr>

             <td>Class</td>
             <td>Sec</td>

             </tr>

             <tr>
             <td>Address</td>

             <td>Mob</td>

             </tr>
             </table>

             </body>

             </html>
             The web page will appear like this.




              Computer-8            108
   103   104   105   106   107   108   109   110   111   112   113