Advertisement
Rakibul_Ahasan

Html Layout H.W 02 (Clone)

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