Advertisement
Guest User

Untitled

a guest
Sep 19th, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <style>
  4. body{
  5. margin:0;}
  6. #navbar{
  7. border:1px solid black;
  8. width:100vw;
  9. height:10vh;
  10. background-color:red;
  11. color:white;}
  12. header{
  13. width:49vw;
  14. height:9vh;
  15. border:1px solid black;
  16. float:left;}
  17. nav{
  18. width:49vw;
  19. height:9vh;
  20. border:1px solid black;
  21. float:right;}
  22. li{
  23. display:inline-block;
  24. background-color:white;
  25. width:7vw;
  26. height:5vh;}
  27. section{
  28. float:left;
  29. width:70vw;
  30. height:80vh;
  31. border:1px solid black;}
  32. aside{
  33. float:right;
  34. width:28vw;
  35. height:80vh;
  36. border:1px solid black;}
  37. #tytul{
  38. height:10vh;
  39. width:100vh;
  40. background-color:blue;
  41. margin-left:10vw;
  42. margin-top:10vh;}
  43. .article{
  44. height:20vh;
  45. width:100vh;
  46. background-color:blue;
  47. margin-left:10vw;
  48. margin-top:5vh;}
  49. footer{
  50. height:7.5vh;
  51. width:100vw;
  52. background-color:red;}
  53.  
  54. </style>
  55. </head>
  56. <body>
  57. <div id="navbar">
  58. <header>
  59. Tytułowy tytuu
  60. </header>
  61. <nav>
  62. <ul>
  63. <li>huj</li>
  64. <li>huj</li>
  65. <li>huj</li>
  66. <li>huj</li>
  67. </ul>
  68. </nav>
  69. </div>
  70.  
  71. <div style="clear:both;"></div>
  72.  
  73. <div id="czolem">
  74. <section>
  75. <div id="tytul">Aktualnosci</div>
  76. <div class="article"></div>
  77. <div class="article"></div>
  78. </section>
  79. <aside>
  80. asdasd
  81. </aside>
  82. </div>
  83.  
  84. <div style="clear:both;"></div>
  85.  
  86. <footer>
  87. sex ruchanie
  88. </footer>
  89. </body>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement