Advertisement
Guest User

Untitled

a guest
Jan 22nd, 2020
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta charset="utf-8" />
  4. <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
  5. <style>
  6. body {
  7. margin:0;
  8. padding: 0;
  9. text-align: center;
  10. }
  11. #pudelko {
  12. margin:auto;
  13. width:800px;
  14. }
  15. #logo {
  16. height: 100px;
  17. background-color: gray;
  18. }
  19. #menu1 {
  20. width: 600px;
  21. height: 20px;
  22. float:left;
  23. background-color: darkgray;
  24. }
  25. #menu2 {
  26. width: 200px;
  27. height: 219px;
  28. float:left;
  29. background-color: darkgray;
  30. }
  31. #tresc {
  32. width: 600px;
  33. height:200px;
  34. background-color: silver;
  35. }
  36. #stopka {
  37. background-color: gray;
  38. clear:both;
  39. height: 20px;
  40. }
  41.  
  42. </style>
  43. </head>
  44. <body>
  45. <div id="pudelko">
  46. <div id="logo">LOGO</div>
  47. <div id="menu1">
  48. <a href=" ">Link</a>
  49. <a href=" ">Link</a>
  50. <a href=" ">Link</a>
  51. <a href=" ">Link</a>
  52. </div>
  53. <div id="menu2">
  54. <a href=" ">Link</a>
  55. <a href=" ">Link</a>
  56. <a href=" ">Link</a>
  57. <a href=" ">Link</a>
  58. </div>
  59. <div id="tresc">
  60. <h3>Uklad nr 3</h3>
  61. treΕ›Δ‡ strony
  62. </div>
  63. <div id="stopka"></div>
  64. </div>
  65. </body>
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement