Advertisement
Robert_JR

blah blah blah

Jul 7th, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.30 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.     <title>Practice</title>
  4.     <head>
  5.         <style>
  6.         .area
  7.         {
  8.             height: 940px;
  9.             width: 1900px;
  10.             background-color:grey;
  11.         }
  12.         .header
  13.         {
  14.             height: 200px;
  15.             width: 1900px;
  16.             background-color: black;
  17.         }
  18.         .side
  19.         {
  20.             height: 600px;
  21.             width: 300px;
  22.             background-color: red;
  23.         }
  24.         .footer
  25.         {
  26.             height: 200px;
  27.             width: 1900px;
  28.             background-color: green;
  29.         }
  30.         .home
  31.         {
  32.             height: 200px;
  33.             width: 300px;
  34.             background-color: blue;
  35.             text-align: center;
  36.         }
  37.         .nothome
  38.         {
  39.             height: 200px;
  40.             width: 300px;
  41.             background-color: black;
  42.         }
  43.         </style>
  44.     </head>
  45.     <body>
  46.         <div class="area">
  47.             <div class="header">
  48.             </div>
  49.             <div class="side">
  50.                 <div class="home">
  51.                     Home sweet home
  52.                 </div>
  53.                 <div class="nothome">
  54.                 </div>
  55.             </div>
  56.             <div class="footer">
  57.             </div>
  58.         </div>
  59.     </body>
  60.  
  61. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement