Advertisement
Koragg

Example Site Template [HTML]

Oct 23rd, 2019
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.06 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3.     <head>
  4.         <title>Example Site Template</title>
  5.         <style>
  6.             .box1 {
  7.               border: 1px solid;
  8.               height: 70px;
  9.               background-color:cyan;
  10.             }
  11.             #wrapper {
  12.                 width: 1510px;
  13.                 overflow: hidden;
  14.             }
  15.             #wrapper:after {
  16.                 display: block;
  17.                 height: 0px;
  18.                 clear: both;
  19.                 float: none;
  20.             }
  21.             #wrapper div {float: left;}
  22.             .box2 {
  23.                 border: 1px solid;
  24.                 height: 500px;
  25.                 width: 200px;
  26.                 background-color:red;
  27.                 margin-right: 47px;
  28.             }
  29.             .box3 {
  30.                 border: 1px solid;
  31.                 height: 569px;
  32.                 width: 1010px;
  33.                 background-color:yellow;
  34.             }
  35.             .box4 {
  36.                 border: 1px solid;
  37.                 height: 350px;
  38.                 width: 200px;
  39.                 background-color:blue;
  40.                 margin-left: 47px;
  41.             }
  42.             .box5 {
  43.                 border: 1px solid;
  44.                 height: 70px;
  45.                 background-color:green;
  46.             }
  47.         </style>
  48.     </head>
  49.     <body>
  50.         <div class="box1"></div>
  51.         <p></p>
  52.         <div id="wrapper">
  53.             <div class="box2"></div>
  54.             <div class="box3"></div>
  55.             <div class="box4"></div>
  56.         </div>
  57.         <p></p>
  58.         <div class="box5"></div>
  59.     </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement