Advertisement
Guest User

Untitled

a guest
Feb 24th, 2020
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.89 KB | None | 0 0
  1. nav {
  2.  
  3. height: 50px;
  4. margin: auto;
  5.  
  6. }
  7.  
  8.  
  9. #lewy {
  10. width: 200px;
  11. height: 900px;
  12. margin: auto;
  13.  
  14. float: left;
  15.  
  16. }
  17. #jd {
  18. width: 1200px;
  19. height: 900px;
  20. margin: auto;
  21.  
  22. float: left;
  23. }
  24. #prawy {
  25. width: 200px;
  26. height: 900px;
  27. margin: auto;
  28.  
  29. float: left;
  30.  
  31. }
  32. footer {
  33. width: 1600px;
  34. height: 50px;
  35. margin: auto;
  36.  
  37. float: right;
  38. clear: both;
  39. }
  40. main{
  41. width: 1600px;
  42. height: 1000px;
  43. margin: auto;
  44.  
  45. }
  46. <!DOCTYPE html>
  47.  
  48. <html lang="pl">
  49. <head>
  50. <meta charset="utf-8" />
  51. <link rel="stylesheet" href="1.css" />
  52. <title>kozak szablon oguem</title>
  53. </head>
  54. <body>
  55. <main>
  56. <header></header>
  57. <nav></nav>
  58. <aside id="lewy"></aside>
  59. <div id="jd"></div>
  60. <aside id="prawy"></aside>
  61. <footer></footer>
  62. </main>
  63. </body>
  64. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement