Advertisement
giganciprogramowania

sklep-muzyczny-gp

Jun 7th, 2021 (edited)
408
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.50 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="pl">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <meta name="viewport" content="width=device-width, initial-scale=1">
  7.  
  8. <title>Sklep muzyczny</title>
  9. <link rel="icon" href="https://cdn.glitch.com/3f138ee4-4896-4ec7-88f0-78bb1a2642cf%2Flogo-2287665_1280.png?v=1623097139221">
  10. <link href="style.css" rel="stylesheet" type="text/css">
  11. <link href="https://fonts.googleapis.com/css?family=Quicksand&display=swap" rel="stylesheet">
  12.  
  13. </head>
  14.  
  15.  
  16. <body>
  17.  
  18. <div id="calaStrona">
  19.  
  20. <img id="logo" src="https://cdn.glitch.com/1ffae188-0a39-49d2-9f7e-fd1cf0530892%2Flogo.png?v=1584276861388">
  21.  
  22. <ul id="nawigacja">
  23. <li><a href="#">Strona główna</a></li>
  24. <li><a href="#">Sprzedaż</a></li>
  25. <li><a href="#">Naprawy</a></li>
  26. <li><a href="#">O nas</a></li>
  27. <li><a href="kontakt.html">Kontakt</a></li>
  28. </ul>
  29.  
  30. <img id ="baner" src="https://cdn.glitch.com/1ffae188-0a39-49d2-9f7e-fd1cf0530892%2Fcc958793-3a40-4431-b9df-005252fe456d.obraz.png?v=1584276566263">
  31.  
  32. <p>
  33. Specjalizujemy się w sprzedaży oraz naprawach gitar, a w szczególności: Fender, Gibson, Ibanez.
  34.  
  35. </p>
  36.  
  37. </div>
  38. </body>
  39. </html>
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46. ///////////////////////////////////CSS///////////////////////////////////////
  47.  
  48. body {
  49.  
  50. font-family: 'Quicksand', sans-serif;
  51. background-image:url('https://cdn.glitch.com/1ffae188-0a39-49d2-9f7e-fd1cf0530892%2F7fc37a26-a2ab-435a-9537-d75367d8ccc5.obraz.png?v=1584218200836');
  52. background-repeat: no-repeat;
  53. background-position: center;
  54. background-attachment: fixed;
  55. }
  56.  
  57. #calaStrona {
  58. width: 1000px;
  59. margin-left:auto;/*wyśrodkowanie strony*/
  60. margin-right:auto;/*wyśrodkowanie strony*/
  61. border: 3px dashed #000000;/*dodajemy ramkę przy okazji wtedy uczniowie zobaczą rzeczywiście to pudełko, zamiast double może być: solid, dotted,dashed*/
  62. background-color: #ffffff;
  63. }
  64.  
  65.  
  66.  
  67. #logo {
  68. display: block;
  69. width:300px;
  70. margin-left: auto;
  71. margin-right: auto;
  72. }
  73.  
  74.  
  75. #nawigacja{
  76. width: 700px;
  77. margin-left:auto;
  78. margin-right:auto;
  79. border-top: 2px solid #000;
  80. border-bottom: 1px solid #000;
  81. padding:10px;
  82. text-align: center;
  83. }
  84. li {
  85.  
  86. display: inline;
  87. letter-spacing:1px;
  88. padding:10px;
  89. }
  90.  
  91.  
  92. a {
  93. color: #000000;
  94. text-transform: uppercase;
  95. text-decoration: none;
  96.  
  97. }
  98.  
  99. a:hover {
  100. color: #cc3333;
  101. }
  102.  
  103.  
  104. #baner{
  105. display: block;
  106. margin-left: auto;
  107. margin-right: auto;
  108. width:600px;
  109. border-radius:10px;
  110. }
  111.  
  112. p {
  113. text-align: center;
  114. }
  115.  
  116.  
  117. #kontakt{
  118.  
  119. padding: 30px;
  120. height:1300px;
  121. }
  122.  
  123. form {
  124. margin-top: 20px;
  125. width: 400px;
  126.  
  127. }
  128. form input,form select{
  129.  
  130. width:330px;
  131. height: 35px;
  132. font-size:20px;
  133.  
  134. }
  135.  
  136. textarea{
  137. width: 330px;
  138. font-size:20px;
  139. resize: none;/*blokujemy możliwość zmiany wielkości przez użytkownika*/
  140.  
  141. }
  142.  
  143. label{
  144.  
  145. font-size: 18px;
  146. }
  147.  
  148.  
  149. fieldset{
  150.  
  151. padding:20px;
  152. margin-bottom:10px;
  153.  
  154. }
  155.  
  156. legend{
  157. font-size:30px;
  158. }
  159.  
  160.  
  161.  
  162. #przycisk{
  163. width:150px;
  164. height:60px;
  165. background-color: #1f1a34;
  166. color: white;
  167. padding: 15px;
  168. font-size: 16px;
  169. border-radius: 4px;
  170. letter-spacing:1px;
  171. border: 2px solid #1f1a34;
  172. text-transform:uppercase;
  173.  
  174. }
  175.  
  176.  
  177. #przycisk:hover {
  178. background-color: white;
  179. color: black;
  180. cursor:pointer;
  181.  
  182.  
  183. }
  184.  
  185.  
  186.  
  187. .dwieKolumny
  188. {
  189. width:50%;
  190. float:left;
  191.  
  192. }
  193.  
  194.  
  195.  
  196.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement