Guest User

Untitled

a guest
Dec 5th, 2019
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. <html>
  2. <head>
  3. <h1 style="color:black;">Registration Page</h1>
  4. </head>
  5. <body>
  6. <form>
  7. Username:<input type ="Username" width="20" height="3" required>
  8. Email:<input type="Email" name="Enter Email" width="20" height="3" required >
  9. Password:<input type="Password" name="Enter Password" width="20" height="3" required> <br />
  10. Gender:<input type="radio" name="gender" value="male" required>Male
  11. <input type="radio" name="gender" value="female" required>Female
  12. <input type="radio" name="gender" value="other" required>Others
  13. <h2 style="color:black;">Choose State</h2>
  14.  
  15. <select>
  16.  
  17. <option value="Select Any one state">Select any one state </option>
  18. <option value="Maharashtra">Maharashtra</option>
  19. <option value="Delhi">Delhi</option>
  20. <option value="Goa">Goa</option>
  21. <option value="UP">UP</option>
  22. <option value="Gujurat">Gujurat</option><br><
  23.  
  24.  
  25.  
  26. </select>
  27. <label for="Iphone" >Select Preference:</label>
  28. <input type='checkbox' name="Iphone" value="Iphone" width="20" height="3" required>Iphone
  29. <input type='checkbox' name="MacBook" value="MacBook " width="" height="3" required>Macbook
  30. <input type='checkbox' name="Ipad" value="Ipad" width="20" height="3" required>Ipad
  31.  
  32.  
  33.  
  34. </form>
  35.  
  36.  
  37. </body>
  38. <style type="text/css">
  39. input {
  40. margin-top: 20px;
  41. }
  42. </style>
  43. </html>
Add Comment
Please, Sign In to add comment