Advertisement
Guest User

Untitled

a guest
Apr 20th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta name="viewport" content="width=device-width, initial-scale=1">
  5. <style>
  6. body {
  7. font-family: Arial, Helvetica, sans-serif;
  8. background-color: black ;
  9. }
  10.  
  11. * {
  12. box-sizing: border-box;
  13. }
  14.  
  15.  
  16. .container {
  17. padding: 16px;
  18. background-color: white;
  19. border-radius: 25px;
  20. cursor: pointer;
  21. }
  22.  
  23. input[type=text], input[type=password] {
  24. width: 100%;
  25. padding: 15px;
  26. margin: 5px 0 22px 0;
  27. display: inline-block;
  28. border: none;
  29. background: #f1f1f1;
  30. }
  31.  
  32. input[type=text]:focus, input[type=password]:focus {
  33. background-color: #ddd;
  34. outline: none;
  35. }
  36.  
  37.  
  38. hr {
  39. border: 1px solid #f1f1f1;
  40. margin-bottom: 20px;
  41. }
  42.  
  43.  
  44. .registerbtn {
  45. background-color: #9ACD32;
  46. border-radius: 20px;
  47. color: black;
  48. padding: 16px 20px;
  49. margin: 8px 0;
  50. border: none;
  51. cursor: pointer;
  52. width: 100%;
  53. opacity: 0.9;
  54. }
  55.  
  56.  
  57. </style>
  58. </head>
  59.  
  60. <body>
  61.  
  62. <form action="/test.php">
  63. <div class="container">
  64. <h1>Lascia un Feedback</h1>
  65. <p>Lascia un feedback e lo riceverò direttamente nella casella postale.</p>
  66. <hr>
  67.  
  68.  
  69. <label for="feed"><b>Commento</b></label>
  70. <input type="text" placeholder="Scrivi qui il tuo feedback" name="feed" required>
  71.  
  72.  
  73.  
  74. <button type="submit" class="registerbtn" color="#9ACD32"><strong>Invia</strong></button>
  75. </div>
  76.  
  77. </form>
  78.  
  79. </body>
  80. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement