Posts

Showing posts from June, 2022

Tables-Page2

                                    TABLES-Page 2 <!DOCTYPE html > <html lang= "en" > <head>     <meta charset= "UTF-8" >     <meta http-equiv= "X-UA-Compatible" content= "IE=edge" >     <meta name= "viewport" content= "width=device-width, initial-scale=1.0" >     <title> HTML Tables </title> </head> <body> TABLE # 1     <h2> BASIC TABLE STRUCTURE </h2>     <table border = "3" width= "40%" >         <tr>             <td> cell1 </td>             <td> cell2 </td>             <td> cell3 </td>         </tr>         <tr>           ...
Image
TABLES- Page 1
Image
HTML AND A LITTLE CSS  APPLIED       <!DOCTYPE html > <html lang= "en" > <head>     <meta charset= "UTF-8" >     <meta http-equiv= "X-UA-Compatible" content= "IE=edge" >     <meta name= "viewport" content= "width=device-width, initial-scale=1.0" >     <title> Table </title>         </head> <body>     <table border = "2" width= "90%" >         <!-- 10 rows and 8 columns -->         <caption> Overall Performance of the Team </caption>         <thead class= "merge" >   <!-- 1st ROW -->       <tr bgcolor = "#A9A9A9" >                 <th rowspan= "2" > Equips </th>             <th colspan= "6" > Table of Performance </t...