Advertisement
TMCREATIVE1

Untitled

Mar 29th, 2017
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="ru">
  3. <meta charset="UTF-8">
  4. <title>Zookeeper Form</title>
  5. <style>
  6. fieldset
  7. {
  8. width: 1320px;
  9. }
  10. </style>
  11. </head>
  12. <body>
  13. <form id="200" action="My.html" method="GET">
  14. <h3>Zoo Keeper Application Form</h3>
  15. <fieldset style="height: 100px">
  16. <legend>CONTACT DETAILS</legend>
  17. <label for="name">Name<em>*</em></label>
  18. <input id="name"><br>
  19. <label for="phone">Telephone</label>
  20. <input id="phone" placeholder="(XXX)-(XXXX-XXX-XX)"><br>
  21. <label for="mail">Email<em>*</em></label>
  22. <input id="mail" placeholder="example@gmail.com"><br>
  23. </fieldset>
  24. <fieldset style="height: 200px">
  25. <legend>PERSONAL INFORMATION</legend>
  26. <label for="age"><em>*</em>Age</label>
  27. <input id="age"><br>
  28. <label for="gender">Gender</label>
  29. <select id="gender">
  30. <option value="Female">Female</option>
  31. <option value="Male">Male</option>
  32. </select><br>
  33. <label for="comment">When did you<br> first know you<br> wanted to be a<br> zoo-keeper?</label><br>
  34. <textarea id="comment"></textarea>
  35. </fieldset>
  36. <fieldset style="height: 100px">
  37. <legend>PICK YOUR FAVORITE ANIMALS</legend>
  38. <label for="zebra"></label><input type="checkbox" name="zebra" > Zebra&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  39. <label for="cat"></label><input type="checkbox" name="cat">Cat&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  40. <label for=""></label><input type="checkbox" name="anaconda">Anaconda&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  41. <label for="Human"></label><input type="checkbox" name="Human">Human<br>
  42. <label for="elephant"></label><input type="checkbox" name="elephant">Elephant&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  43. <label for="wildebeest"></label><input type="checkbox" name="wildebeest">Wildebeest&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  44. <label for="pigeon"></label><input type="checkbox" name="pigeon">Pigeon&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
  45. <label for="Crab"></label><input type="checkbox" name="Crab">Crab
  46. </fieldset>
  47. <input type="submit" value="Пошел к зверям">
  48. </form>
  49. </body>
  50. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement