Advertisement
DariuszKralewski

Untitled

Mar 31st, 2020
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>Layout</title>
  7. <style>
  8. html,
  9. body {
  10. background-color: #fff;
  11. color: #000;
  12. margin: 0;
  13. padding: 0;
  14. }
  15. #strona {
  16. width: 1000px;
  17. margin-left: auto;
  18. margin-right: auto;
  19. }
  20. #gora {
  21. background-color: #bbb;
  22. text-align: center;
  23. }
  24. #menu {
  25. width: 200px;
  26. background-color: #ddd;
  27. float: left;
  28. overflow: hidden;
  29. }
  30. #zawartosc {
  31. width: 800px;
  32. background-color: #fff;
  33. float: left;
  34. }
  35. #stopka {
  36. background-color: #eee;
  37. text-align: center;
  38. }
  39. </style>
  40. </head>
  41. <body>
  42. <div id="strona">
  43. <div id="gora">Nagłówek strony</div>
  44. <div id="menu">
  45. Menu nawigacyjne
  46. </div>
  47. <div id="zawartosc">Właściwa zawartość strony</div>
  48. <div id="stopka">Stopka strony</div>
  49. </div>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement