Advertisement
Rakibul_Ahasan

Html Layout HW 02

Jan 24th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 2.91 KB | None | 0 0
  1. <!DOCTYPE htmal>
  2. <html>
  3.   <head>
  4.     <!-- my code -->
  5.     <title> HTML TABLE </title>
  6.   </head>
  7.  
  8.   <body>
  9.       <table cellpadding="0" cellspacing="0">
  10.         <!-- 1st row -->
  11.         <tr>
  12.           <td bgcolor="Tomato" height="200" width="133.33" align="center">Home</td>
  13.           <td bgcolor="Orange" height="200" width="133.33" align="center">About</td>
  14.           <td bgcolor="DodgerBlue" height="200" width="133.33" align="center">Service</td>
  15.           <td bgcolor="MediumSeaGreen" height="200" width="133.33" align="center">Contact</td>
  16.           <td bgcolor="Gray" height="200" width="133.33" align="center">Registration</td>
  17.           <td bgcolor="SlateBlue" height="200" width="133.33" align="center">Login</td>
  18.         </tr>
  19.         <!-- 2st row -->
  20.         <tr>
  21.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  22.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  23.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  24.           <td bgcolor="#ff00b" height="200" width="133.33" >Hav</td>
  25.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  26.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  27.         </tr>
  28.         <!-- 3st row -->
  29.         <tr>
  30.            <td bgcolor="DodgerBlue" height="210" width="133.33" > </td>
  31.            <td bgcolor="DodgerBlue" height="210" width="133.33" >Section 01 </td>
  32.            <td bgcolor="DodgerBlue" height="210" width="133.33" > </td>
  33.            <td bgcolor="Orange"     height="210" width="133.33" > </td>
  34.            <td bgcolor="Orange"     height="210" width="133.33" > Section 02 </td>
  35.            <td bgcolor="Orange"     height="210" width="133.33" > </td>
  36.         </tr>
  37.         <!-- 4st row -->
  38.         <tr>
  39.            <td bgcolor="MediumSeaGreen" height="70" width="44.443" align="center">City</td>
  40.            <td bgcolor="Gray" height="70" width="44.443" align="center">Gender</td>
  41.            <td bgcolor="SlateBlue" height="70" width="44.443" align="center">Data</td>
  42.            <td bgcolor="Tomato"     height="210" width="133.33" > </td>
  43.            <td bgcolor="Tomato"     height="210" width="133.33" >Id</td>
  44.            <td bgcolor="Tomato"     height="210" width="133.33" > </td>
  45.         </tr>
  46.         <!-- 5st row -->
  47.         <tr>
  48.            <td bgcolor="DodgerBlue" height="210" width="133.33" > </td>
  49.            <td bgcolor="DodgerBlue" height="210" width="133.33" >Article 01</td>
  50.            <td bgcolor="DodgerBlue" height="210" width="133.33" > </td>
  51.            <td bgcolor="Orange"     height="210" width="133.33" > </td>
  52.            <td bgcolor="Orange"     height="210" width="133.33" >Article 01</td>
  53.            <td bgcolor="Orange"     height="210" width="133.33" > </td>
  54.         </tr>
  55.         <!-- 6st row -->
  56.         <tr>
  57.            <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  58.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  59.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  60.           <td bgcolor="#ff00b" height="200" width="133.33" >Footer</td>
  61.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  62.           <td bgcolor="#ff00b" height="200" width="133.33" > </td>
  63.         </tr>
  64.        
  65.       </table>   
  66.   </body>
  67.  </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement