Advertisement
Guest User

rovsen

a guest
Mar 30th, 2015
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.53 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <style type = "text/css">
  5.  
  6. #outer{
  7. width:700;
  8. height:700;
  9. background-color:#ffffff;
  10. position:absolute;
  11. border-style: solid;
  12. border-width: 5px;
  13. border-color: gray;
  14. margin-top:10;
  15. margin-left:210;
  16. }
  17.  
  18. #header{
  19. width:600;
  20. height:80;
  21. background-color:orange;
  22. position:absolute;
  23. margin-left: 260;
  24. margin-top: 60;
  25. }
  26.  
  27. #back{
  28. width:600;
  29. height:500;
  30. background-color:green;
  31. position:absolute;
  32. margin-left: 260;
  33. margin-top: 150;
  34. }
  35.  
  36. #footer{
  37. width:600;
  38. height:30;
  39. background-color:orange;
  40. position:absolute;
  41. margin-left: 260;
  42. margin-top: 660;
  43. }
  44.  
  45. #main{
  46. width:280;
  47. height:440;
  48. background-color:blue;
  49. position:absolute;
  50. margin-left: 270;
  51. margin-top: 200;
  52. }
  53.  
  54. #sidebar{
  55. width:290;
  56. height:440;
  57. background-color:black;
  58. position:absolute;
  59. margin-left: 565;
  60. margin-top: 200;
  61. }
  62.  
  63. #sideheader{
  64. width:270;
  65. height:100;
  66. background-color:orange;
  67. position:absolute;
  68. margin-left: 575;
  69. margin-top: 220;
  70. }
  71.  
  72. #sideleft{
  73. width:140;
  74. height:300;
  75. background-color:yellow;
  76. position:absolute;
  77. margin-left: 575;
  78. margin-top: 330;
  79. }
  80.  
  81. #sideright{
  82. width:120;
  83. height:300;
  84. background-color:blue;
  85. position:absolute;
  86. margin-left: 725;
  87. margin-top: 330;
  88. }
  89.  
  90. </style>
  91. </head>
  92.  
  93.  
  94.  
  95. <body>
  96.  
  97. <div id="outer"></div>
  98. <div id="header">Header</div>
  99. <div id="back"></div>
  100. <div id="footer">Footer</div>
  101. <div id="main">Main</div>
  102. <div id="sidebar">Sidebar</div>
  103. <div id="sideheader">Side Header</div>
  104. <div id="sideleft">Side Left</div>
  105. <div id="sideright">Side Right</div>
  106.  
  107. </body>
  108.  
  109. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement