Advertisement
poshtarboba

form

Nov 10th, 2020
941
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.49 KB | None | 0 0
  1. <form>
  2. <label>
  3.     Name:<br>
  4.     <input name="name">
  5. </label><br>
  6. Gender:<br>
  7. <label><input type="radio" name="gender" value="male" checked> male</label><br>
  8. <label><input type="radio" name="gender" value="female"> female</label><br>
  9. <br>
  10. <label><input type="checkbox" name="married"> married?</label><br>
  11. <label>
  12.     City:<br>
  13.     <select name="city">
  14.         <option>Kyiv</option>
  15.         <option>Lviv</option>
  16.         <option>Herson</option>
  17.     </select>
  18. </label><br>
  19. <input type="submit" value="Send info">
  20. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement