Guest User

Untitled

a guest
Aug 9th, 2018
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.80 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <title></title>
  6. </head>
  7. <body>
  8. <form action="action.jsp" method="post" enctype="text/plain" target="_blank">
  9.     username:<br>
  10.     <input type="text" name="username"><br>
  11. password:<br> <input type="password" name="password" min="7"><br>
  12. email:<br><input type="email" name="email"><br>
  13. mobile no. : <br><input type="number" maxlength="10" name="phone"/><br>
  14. Country: <select name="cont">
  15.         <option value="in">India</option>
  16.         <option value="au">Australia</option>
  17.       </select><br>
  18.      Gender:<input type="radio" name="male" value="male">
  19.             <input type="radio" name="male" value="female"> <br>
  20.  Address : <br><textarea name="add"></textarea> <br>
  21.  <input type="submit"/>
  22.  <input type="reset"/>
  23.  
  24.  
  25. </form>
  26. </body>
  27. </html>
Add Comment
Please, Sign In to add comment