Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.14 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8"/>
  5. <meta name="description" content="Stronka internetowa :3"/>
  6. <meta name="author" content="Wojciech Hołuj"/>
  7. <meta name="robots" content="follow"/>
  8. <title> Sprawdzianik </title>
  9. <style>
  10. body
  11. {
  12. margin:0;
  13. padding:0;
  14. }
  15.  
  16. #pojemnik
  17. {
  18. width:1200px;
  19. margin:0 auto;
  20. overflow:hidden;
  21. }
  22.  
  23. header
  24. {
  25. text-align:center;
  26. font-family:arial;
  27. height:150px;
  28. background-color:rgb(0,206,209);
  29. }
  30.  
  31. #lewo
  32. {
  33. float:left;
  34. width:300px;
  35. height:400px;
  36. background:rgb(224,255,255);
  37. border-right: dashed 2px rgb(0,128,128);
  38. }
  39. #menu li{
  40. list-style:none;
  41. padding:3px;
  42. }
  43.  
  44. #menu a{
  45. text-decoration:none;
  46. color:black;
  47. font-family:arial;
  48. background-color:rgb(0,206,209);
  49. border: solid 2px black;
  50. width:100px;
  51. }
  52.  
  53. #prawo
  54. {
  55. float:right;
  56. width:897px;
  57. height:400px;
  58. background:rgb(224,255,255);
  59. }
  60.  
  61. h2{
  62. text-align:center;
  63. font-family:arial;
  64. }
  65. ol{
  66. margin: 0px 300px;
  67. }
  68.  
  69. #lista{
  70. margin: 0px -300px;
  71. }
  72.  
  73. footer
  74. {
  75. text-align:center;
  76. clear:both;
  77. background-color:rgb(0,206,209)
  78. }
  79.  
  80.  
  81.  
  82.  
  83. </style>
  84. </head>
  85. <body>
  86. <div id="pojemnik">
  87. <header>
  88. <h1> Strona internetowa </h1>
  89. </header>
  90. <div id="lewo">
  91. <div id="menu">
  92. <ul>
  93. <li><a href="index.html"> Strona główna </a></li>
  94. <li><a href="index.html"> Podstrona nr 1 </a></li>
  95. <li><a href="index.html"> Podstrona nr 2 </a></li>
  96. <li><a href="index.html"> Pomoc </a></li>
  97. </ul>
  98. </div>
  99. </div>
  100. <div id="prawo">
  101. <h2> Informacje </h2>
  102. <ol>
  103. <li>Dane ucznia: <br/>
  104. <div id="lista">
  105. <ol>
  106. <li> xD </li>
  107. <li>d</li>
  108. <li>d</li>
  109. <li>d</li>
  110. </ol>
  111. </div>
  112. </li>
  113. <li>xD</li>
  114. <li></li>
  115. <li></li>
  116. <li></li>
  117. </ol>
  118. </div>
  119. <img src="html5.png" alt="xD"/>
  120. <footer>
  121. <h3> Strona utworzona przez Wojciech Hołuj </h3>
  122. </footer>
  123. </div>
  124. </body>
  125. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement