Advertisement
giganciprogramowania

kontaktForm

Jun 15th, 2022
192
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. <!--FORMULARZ KONTAKTOWY-->
  2.  
  3. <div id="kontakt" class="kontener">
  4.  
  5. <form action="https://formsubmit.co/miejsceNaTwojaAdresEmailGigancie" method="POST" enctype="multipart/form-data">
  6.  
  7. <fieldset>
  8. <legend>
  9. Napisz do mnie 📧
  10. </legend>
  11.  
  12. <label for="imie">Imię</label>
  13. <input type="text" maxlength="15" placeholder="Jak masz na imię?" id="imie" name="imie">
  14.  
  15. <label for="email">E-mail</label>
  16. <input type="email" name="email" placeholder="Podaj swój adres e-mail" id="email" required>
  17.  
  18. <textarea rows="10" placeholder="Twoje pytanie..." name="uwagi" required></textarea>
  19.  
  20. <input id="btnSubmit" type="submit" value="Prześlij">
  21. </fieldset>
  22. </form>
  23. </div>
  24. </body>
  25.  
  26.  
  27. /*formularz kontaktowy*/
  28.  
  29. input {
  30. border-radius: 4px;
  31. border: 2px solid #141e30;
  32. padding: 20px;
  33. font-family: "Lato", sans-serif;
  34. font-size: 15px;
  35. }
  36.  
  37. legend {
  38. font-size: 30px;
  39. color: #4a3f3e;
  40. margin-left: auto;
  41. margin-right: auto;
  42. margin-bottom: 10px;
  43. }
  44.  
  45. fieldset {
  46. margin-top: 100px;
  47. align-content: center;
  48. border: none;
  49. border-top: 3px solid #141e30;
  50. }
  51.  
  52. label {
  53. display: block;
  54.  
  55. text-align: center;
  56. font-size: 20px;
  57. }
  58.  
  59. textarea {
  60. font-size: 20px;
  61. resize: none; /*blokujemy możliwość zmiany wielkości przez użytkownika*/
  62. margin-bottom: 20px;
  63. padding: 15px;
  64. border: 2px solid #141e30;
  65. border-radius: 4px;
  66. }
  67.  
  68. input,
  69. label,
  70. textarea,
  71. #btnSubmit {
  72. margin-bottom: 20px;
  73. width: 100%;
  74. }
  75.  
  76. #btnSubmit {
  77. background-color: #65e67a;
  78. padding: 15px;
  79. border: none;
  80. border-radius: 8px;
  81. font-size: 20px;
  82. font-family: "Kanit", sans-serif;
  83. color: white;
  84. transition-duration: 0.5s;
  85. background: #141e30; /* fallback for old browsers */
  86. background: -webkit-linear-gradient(
  87. bottom,
  88. #243b55,
  89. #141e30
  90. ); /* Chrome 10-25, Safari 5.1-6 */
  91. background: linear-gradient(
  92. to bottom,
  93. #243b55,
  94. #141e30
  95. ); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  96. }
  97.  
  98. #btnSubmit:hover {
  99. opacity: 0.8;
  100. cursor: pointer;
  101. }
  102.  
  103.  
  104.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement