Advertisement
Guest User

Untitled

a guest
Jul 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.83 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Practice on the forms</title>
  6. </head>
  7. <body>
  8. <h3>Registration data</h3>
  9. <form action="script.php" method="POST" name="registration">
  10. <label for="uname" name="luname">user name:</label><input type="text" name="uname" id="uname" placeholder="enter name"/><br />
  11. <label for="uemail" name="luemail">user email:</label><input type="email" name="uemail" id="uemail" placeholder="box@host.dn" /><br />
  12. <label for="upas" name="lupas">password:</label><input type="password" name="upas" id="upas" placeholder="enter password" /><br />
  13. <label name="lwhois">
  14. who is:
  15. male<input type="radio" name="whois" value="male" checked />
  16. female<input type="radio" name="whois" value="female" />
  17. </label><br />
  18. <label>
  19. languages:
  20. <input type="checkbox" name="english" value="english" checked />english
  21. <input type="checkbox" name="french" value="french" disabled />french
  22. <input type="checkbox" name="spanish" value="spanish" />spanish
  23. <input type="checkbox" name="german" value="german" />german
  24. </label><br />
  25. <label>
  26. countrie:
  27. <select name="countrie">
  28. <option>USA</option>
  29. <option>Canada</option>
  30. <option>England</option>
  31. <option>Germany</option>
  32. </select>
  33. </label><br />
  34. <label>
  35. about us<br />
  36. <textarea name="about" cols="30" rows="3" maxlength="50" placeholder="Enter about info"></textarea>
  37. </label><br />
  38. <input type="submit" name="name-submit" value="Send data" />
  39. </form>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement