Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html Lang="pl-PL">
  4. <head>
  5. <meta charset="UTF-8">
  6. <title>Kup mieszkanie</title>
  7. <link rel="stylesheet" href="agencja.css">
  8. </head>
  9.  
  10. <body>
  11. <div class="lewy">
  12. <h1>AGENCJA NIERUCHOMOŚCI</h1>
  13. <h3>OFERUJEMY</h3>
  14. <ol>
  15. <li>Nowe mieszkania</li>
  16. <li>Domy w naszym mieście</li>
  17. <li>Domy w okolicy</li>
  18. </ol>
  19. <h3>NASI PRACOWNICY<h3>
  20. <table>
  21. <tr>
  22. <td rowspan="3">Jan Nowak <br /> Prezes</td>
  23. <td>Anna Kowalska</td>
  24. </tr>
  25. <tr>
  26. <td>Katarzyna Nowakowska</td>
  27. </tr>
  28. <tr>
  29. <td>Krzysztof Kowalewski</td>
  30. </tr>
  31. </table>
  32. </div>
  33.  
  34. <div class="prawy">
  35. <h1>KALKULATOR CENY MIESZKANIA</h1>
  36. <label>Podaj metraż mieszkania w m<sup>2</sup/>: <br /> <input type="number" name="rozmiar"></label>
  37. <br />
  38. <br />
  39. <label>Liczba pokoi z zamontowanym okablowaniem sieciowym <br /> <input type="number" name="liczba"></label>
  40. <br />
  41. <br />
  42. <label><input type="checkbox">Kafelki w łazience?</label>
  43. <br />
  44. <br />
  45. <button type="button">OBLICZ</button>
  46. </div>
  47.  
  48. <div class="stopka">
  49. <p>Autor strony: 00000000000<img src="logo.png" alt="nieruchomości"></p>
  50.  
  51. </div>
  52. </body>
  53.  
  54. </html>
  55.  
  56.  
  57.  
  58. *{
  59. margin:0px;
  60. padding:0px;
  61. }
  62.  
  63. header{
  64. background-color:#993333;
  65. color:white;
  66. text-align:center;
  67. height:80px;
  68. }
  69.  
  70. section{
  71. font-family:Tahoma;
  72. background-color:#CC6666;
  73. color:white;
  74. text-align:center;
  75. width:25%;
  76. height:150px;
  77. float:left;
  78. }
  79.  
  80. .lewy{
  81. background-color:#CC9999;
  82. width:40%;
  83. height:550px;
  84. text-align:center;
  85. float:left;
  86. clear:both;
  87. }
  88.  
  89. .lewy table{
  90. border:1px dotted red;
  91. width:100%;
  92. }
  93.  
  94. .lewy td{
  95. text-align:center;
  96. }
  97.  
  98. .srodek{
  99. background-color:#FFCCCC;
  100. width:20%;
  101. height:550px;
  102. float: left;
  103. }
  104.  
  105. .srodek button{
  106. border:none;
  107. padding:20px;
  108. background-color:red;
  109. color:white;
  110. }
  111.  
  112. .prawy{
  113. background-color:#CC9999;
  114. width:40%;
  115. height:550px;
  116. text-align:center;
  117. float:right;
  118. }
  119.  
  120. footer{
  121. background-color:#993333;
  122. color:white;
  123. text-align:right;
  124. clear:both;
  125. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement