Advertisement
Guest User

zad1.html

a guest
Mar 22nd, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. <html>
  2.  
  3. <head>
  4. <META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=utf-8">
  5. </head>
  6.  
  7. <body>
  8. <h2> Registration Form </h2>
  9. <form action="zad1.php" method=POST>
  10. Name <br><input type=text name="first_name" value="" required><br>
  11. Last Name <br><input type=text name="last_name" required><br>
  12. Age <br><input type=number name="age" required><br>
  13. <select name="uni">
  14. <option value="volvo">TU-Varna</option>
  15. <option value="saab">MU-Varna</option>
  16. <option value="opel">VINS</option>
  17. </select>
  18. <p> Choose a year:<br>
  19. <input type=radio name="year" value='I year'>I year<br>
  20. <input type=radio name="year" value='II year'>II year<br>
  21. <input type=radio name="year" value='III year'>III year<br>
  22. <input type=radio name="year" value='IV year'>IV year<br>
  23. </p>
  24. <input type=submit value="Submit">
  25. </form>
  26. </body>
  27.  
  28. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement