wildanfuady

Untitled

Nov 2nd, 2019
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Tugas 1</title>
  4. <style>
  5. #header{
  6. height: 250px;
  7. text-align: center;
  8. }
  9. #sidebar{
  10. width: 300px;
  11. height: 400px;
  12. background: grey;
  13. float: left;
  14. }
  15. #sidebar ul{
  16. width: 300px;
  17. }
  18. #sidebar ul li{
  19. list-style: none;
  20. padding: 20px;
  21. margin-bottom: 10px;
  22. background: purple;
  23. width: 150px;
  24. text-align: center;
  25. }
  26. #sidebar ul li a{
  27. text-decoration: none;
  28. color: white;
  29.  
  30. }
  31. #content{
  32. height: 400px;
  33. background: orange;
  34. }
  35. #footer{
  36. height: 70px;
  37. background: green;
  38. }
  39. body{
  40. margin: 0;
  41. padding: 0;
  42. }
  43. </style>
  44. </head>
  45. <body>
  46. <div id="header">
  47. <h1>Selamat Datang di PT. Prima Ilmu Coding</h1>
  48. <img src="banner.jpg" alt="" height="150px" width="700px">
  49. </div>
  50. <div id="sidebar">
  51. <ul>
  52. <li><a href="">Project 1</a></li>
  53. <li><a href="">Project 2</a></li>
  54. <li><a href="">Project 3</a></li>
  55. </ul>
  56. </div>
  57. <div id="content">Content</div>
  58. <div id="footer">Footer</div>
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment