Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.80 KB | None | 0 0
  1. <html lang="pl">
  2.  
  3. <head>
  4. <meta charset="utf-8">
  5. <title>16.10.1</title>
  6. </head>
  7.  
  8. <style>
  9. #container
  10. {
  11. width: 900px;
  12. height: 830px;
  13. background-color: firebrick;
  14. }
  15.  
  16. #naglowek
  17. {
  18. height: 190px;
  19. width: 880px;
  20. background-color: tomato;
  21. padding: 10px;
  22. }
  23.  
  24. #menu
  25. {
  26. float: left;
  27. width: 160px;
  28. background-color: tan;
  29. height: 460px;
  30. padding: 20px;
  31. text-align: center;
  32. }
  33.  
  34. #box1
  35. {
  36. float: left;
  37. width: 500px;
  38. background-color: rebeccapurple;
  39. height: 430px;
  40. padding: 35px;
  41. }
  42.  
  43. #box2
  44. {
  45. background-color: teal;
  46. height: 200px;
  47. width: 400px;
  48. position: absolute;
  49. top: 410px;
  50. left: 300px;
  51. }
  52.  
  53. #prawyBox
  54. {
  55. float: left;
  56. width: 90px;
  57. background-color: yellow;
  58. height: 460px;
  59. padding: 20px;
  60. }
  61.  
  62. #stopka
  63. {
  64. clear: both;
  65. height: 100px;
  66. font-family: Arial, Helvetica, sans-serif;
  67. color: white;
  68. text-align: right;
  69. background-color: green;
  70. padding: 10px;
  71. }
  72. </style>
  73.  
  74. <body>
  75. <div id="container">
  76. <div id="naglowek">naglowek</div>
  77. <div id="menu">
  78. <p>menu</p>
  79. <a href="https://google.com" target="_blank">google1</a>
  80. <br>
  81. <a href="https://google.com" target="_blank">google2</a>
  82. <br>
  83. <a href="https://google.com" target="_blank">google3</a>
  84. </div>
  85. <div id="box1">box1
  86. <div id="box2">box2</div>
  87. </div>
  88.  
  89. <div id="prawyBox">prawyBox</div>
  90. <div id="stopka">stopka</div>
  91. </div>
  92. </body>
  93.  
  94. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement