Advertisement
Guest User

html/css

a guest
Feb 10th, 2013
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. HTML CODE:
  2. <html>
  3. <style type="text/css">
  4. </style>
  5. <link href="stylesheet.css" rel="stylesheet" type="text/css" />
  6. </head>
  7.  
  8. <body>
  9. <div id="container">
  10.  
  11. <div id="header">
  12. </div>
  13. <div id="main">
  14. </div>
  15.  
  16. <div id="sidebar">
  17. </div>
  18.  
  19. </div>
  20. </body>
  21. </html>
  22.  
  23. CSS CODE:
  24. #container {
  25. height: 1080px;
  26. width: 1920px;
  27. }
  28. #header {
  29. height: 180px;
  30. width: 1100px;
  31. margin-right: 410px;
  32. margin-left: 410px;
  33. }
  34. #main {
  35. height: 785px;
  36. width: 910px;
  37. margin-right: 410px;
  38. margin-left: 600px;
  39. margin-top: 10px;
  40. }
  41. #sidebar {
  42. height: 785px;
  43. width: 180px;
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement