Advertisement
_Nishat_tasnim

form

Sep 12th, 2021
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  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.0">
  7. <title>Race Resistration</title>
  8. </head>
  9. <body>
  10. <form action="/marathon">
  11. <p>
  12. <h1>Race Resistration!</h1>
  13. <label for="name">First Name</label>
  14. <input type="text" name="person" id="name" required>
  15. <label for="name"> Last Name</label>
  16. <input type="text" name="person" id="name" required>
  17. </p>
  18. <p>
  19. <h1>Select a Race:</h1>
  20. <input type="radio" name="race" id="race">
  21. <label for="race">Fun a Race 5k</label><br>
  22. <input type="radio" name="race" id="race">
  23. <label for="race">Half Marathon</label><br>
  24. <input type="radio" name="race" id="race">
  25. <label for="race">Full Marathon</label>
  26. </p>
  27. <p>
  28. <label for="mail">Email</label>
  29. <input type="email" name="mail" id="mail" required>
  30. <label for="pass">Password</label>
  31. <input type="password" name="pass" id="pass" required>
  32. </p>
  33. <p>
  34. <label for="race">Select Age Group</label>
  35. <select name="race" id="race">
  36. <option value="fun">under 18</option>
  37. <option value="half">above 18</option>
  38. </select>
  39. </p>
  40. <button>Register</button>
  41. </form>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement