Advertisement
Guest User

Untitled

a guest
Nov 19th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.02 KB | None | 0 0
  1. <body>
  2.     <form method="POST">
  3.         First name:<input type="text" name="firstname"><br>
  4.         Last name:<input type="text" name="lastname"><br>
  5.         Email: <input type="email" name="email" required><br>
  6.         Password: <input type="password" name="password" min="5"><br>
  7.         Birthday:<input type="date" name="birthday"><br>
  8.         Gender: <br>
  9.         <input type="radio" name="gender" value="male">Male<br>
  10.         <input type="radio" name="gender" value="female">Female<br>
  11.         <input type="radio" name="gender" value="other">Other<br>
  12.         Pets: <br>
  13.         <input type="checkbox" name="cat"> cat <br>
  14.         <input type="checkbox" name="dog"> dog <br>
  15.         Cars: <br>
  16.         <select>
  17.             <option value="volvo" name="volvo">Volvo</option>
  18.             <option value="chevy" name="chevy"">Chevy</option>      
  19.         <option value=" mercedes" name="mercedes">mercedes</option>
  20.         </select>
  21.         <input type="submit" value="Register!">
  22.         <input type="reset">
  23.     </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement