XfreeBG

Untitled

Apr 6th, 2023
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>User Information</title>
  5. <style>
  6. body {
  7. font-family: Arial, sans-serif;
  8. background-color: #f5f5f5;
  9. }
  10.  
  11. form {
  12. background-color: #fff;
  13. padding: 20px;
  14. margin: 20px auto;
  15. max-width: 500px;
  16. box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  17. }
  18.  
  19. label {
  20. display: block;
  21. font-weight: bold;
  22. margin-bottom: 5px;
  23. }
  24.  
  25. input[type="text"] {
  26. display: block;
  27. width: 100%;
  28. padding: 8px;
  29. border: 1px solid #ccc;
  30. border-radius: 4px;
  31. margin-bottom: 20px;
  32. box-sizing: border-box;
  33. }
  34.  
  35. input[type="submit"] {
  36. background-color: #4CAF50;
  37. color: #fff;
  38. border: none;
  39. padding: 12px 20px;
  40. border-radius: 4px;
  41. cursor: pointer;
  42. font-size: 16px;
  43. transition: background-color 0.3s ease;
  44. }
  45.  
  46. input[type="submit"]:hover {
  47. background-color: #3e8e41;
  48. }
  49. </style>
  50. </head>
  51. <body>
  52. <form>
  53. <label for="egn">Enter your EGN:</label>
  54. <input type="text" id="egn" name="egn">
  55.  
  56. <label for="firstName">Enter your First name:</label>
  57. <input type="text" id="firstName" name="firstName">
  58.  
  59. <label for="lastName">Enter your Last name:</label>
  60. <input type="text" id="lastName" name="lastName">
  61.  
  62. <label for="email">Enter your Email address:</label>
  63. <input type="text" id="email" name="email">
  64.  
  65. <input type="submit" value="Submit">
  66. </form>
  67. </body>
  68. </html>
  69.  
Add Comment
Please, Sign In to add comment