Advertisement
Guest User

Untitled

a guest
Jul 28th, 2015
184
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <style>
  5. * {
  6. width: 96%;
  7. margin: 4px;
  8. }
  9.  
  10. #sidebar {
  11. float: left;
  12. background-color: #EEAC57;
  13. height: 900px;
  14. width: 40%;
  15. display: inline;
  16. }
  17.  
  18. #main {
  19. float:right;
  20. background-color: #D9534F;
  21. height: 300px;
  22. width: 55%;
  23. display: inline;
  24. }
  25.  
  26. #footer {
  27. float:right;
  28. background-color: #3498DB;
  29. height: 590px;
  30. width: 55%;
  31. display: inline;
  32. }
  33. </style>
  34. </head>
  35. <body>
  36. <div id="sidebar">
  37. </div>
  38. <div id="main">
  39. </div>
  40. <div id="footer">
  41. </div>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement