Advertisement
Guest User

Untitled

a guest
Dec 11th, 2019
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.98 KB | None | 0 0
  1. ----------------------------------------------
  2. <!DOCTYPE html>
  3. <html lang="pl">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <meta http-equiv="X-UA-Compatible" content="ie=edge">
  8. <title>Biblioteka Publicza</title>
  9. <link rel="Stylesheet" href="./style.css">
  10. </head>
  11. <body>
  12. <div id="banner">
  13. <h2>Miejska Biblioteka Publiczna w Książkowicach</h2>
  14. </div>
  15. <div id="main">
  16. <div id="lewy">
  17. <h2>Dodaj czytelnika</h2>
  18. <form action="biblioteka.php" method="post">
  19. imie <input type="text" name="imie"><br>
  20. nazwisko <input type="text" name="nazwisko"><br>
  21. data urodzenia <input type="number" name="data"><br>
  22. <input id="skrypt2" type="submit" value="dodaj">
  23. <!-- skrypt1 -->
  24. </form>
  25. </div>
  26. <div id="środek">
  27. <img id="obraz" src="biblioteka.png" alt="biblioteka">
  28. <h4>ul. Czytelnicza 25<br>
  29. 12-120 Książkowice<br>
  30. tel.: 123123123<br>
  31. <a href="biuro@bib.pl">biuro@bib.pl</a></h4>
  32. </div>
  33. <div id="prawy">
  34. <h3>Nasi czytelnicy<h3>
  35. <ul id="lista">
  36. <li>element listy</li>
  37. <li>element listy</li>
  38. </ul>
  39. </div>
  40. </div>
  41. <footer>
  42. <p>Projekt Witryny: Nikodem Rybczyk</p>
  43. </footer>
  44.  
  45. </body>
  46. </html>
  47. ------------------------------------------------------------
  48. #main{
  49. display: flex;
  50. }
  51. #banner{
  52. background-color: #d47958;
  53. height: 50px;
  54. }
  55. #lewy{
  56. background-color: #AA593B;
  57. height: 450px;
  58. width: 40%;
  59. }
  60. #środek{
  61. background-color: #E5998B;
  62. height: 450px;
  63. width: 30%;
  64. }
  65. #prawy{
  66. background-color: #AA593B;
  67. height: 450px;
  68. width: 30%;
  69. }
  70. footer{
  71. background-color: #D47958;
  72. height: 50px;
  73. text-align:right;
  74. }
  75. #lista{
  76. margin-left: 100px;
  77. list-style-type: circle;
  78. }
  79. img{
  80. margin-top:100px;
  81. float: left ;
  82. }
  83. form{
  84. margin-left: 120px;
  85. margin-top:50px;
  86. }
  87. h4{
  88. margin-left: 100px;
  89. margin-top:200px;
  90. }
  91. h2{
  92. text-align: center;
  93. margin: 0px;
  94. }
  95. h3{
  96. text-align: center;
  97. }
  98. p{
  99. margin:0px;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement