Advertisement
wildanfuady

Untitled

Nov 2nd, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Tugas 1</title>
  4. <style>
  5. #header{
  6. height: 120px;
  7. background: aqua;
  8. }
  9. #sidebar{
  10. width: 300px;
  11. height: 400px;
  12. background: blue;
  13. float: left;
  14. }
  15. #content{
  16. height: 400px;
  17. background: orange;
  18. }
  19. #footer{
  20. height: 70px;
  21. background: green;
  22. }
  23. body{
  24. margin: 0;
  25. padding: 0;
  26. }
  27. </style>
  28. </head>
  29. <body>
  30. <div id="header">Header</div>
  31. <div id="sidebar">Sidebar</div>
  32. <div id="content">Content</div>
  33. <div id="footer">Footer</div>
  34. </body>
  35. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement