Advertisement
Guest User

Untitled

a guest
May 4th, 2016
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.16 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head><title>Mockup Page</title>
  4. <style>
  5. .main-container{
  6.     margin-left:auto;
  7.     margin-right:auto;
  8. }
  9. header{
  10.     height:100px;
  11.     width:100%;
  12.     background-color:blue;
  13. }
  14.  
  15. .main-content{
  16.     width:100%;
  17. }
  18.  
  19. .sidebar{
  20.     display:inline-block;
  21.     height:1000px;
  22.     width:10%;
  23.     background-color:green;
  24.  
  25. }
  26.  
  27. .article{
  28.    height:1000px;
  29.     width:50%;
  30.     background-color:gray;
  31.     display:inline-block;
  32.     position:relative;
  33.     top:0px;
  34. }
  35.  
  36. .adbar{
  37.     display:inline-block;
  38.     width: 200px;
  39.     height:1300px;
  40. }
  41.  
  42.  
  43. .allads{
  44.     width:100%;
  45.     height:200px;  
  46.     background-color:yellow;
  47.     display:inline-block;
  48. }
  49. </style>
  50. </head>
  51.  
  52. <body>
  53.  
  54. <div class="main-container">
  55.     <header>Header</header>
  56.  
  57.     <div class="main-content">
  58.         <div class="sidebar">sidebar</div>
  59.         <div class="article">article</div>
  60.         <div class="adbar">
  61.             <div class="ad1 allads">ad1</div>
  62.             <div class="ad2 allads">ad2</div>
  63.             <div class="ad3 allads">ad3</div>
  64.             <div class="ad4 allads">ad4</div>
  65.         </div>
  66.     </div>  
  67. </div>
  68.  
  69.  
  70. </body>
  71.  
  72.  
  73. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement