Guest User

Registration Form HTML Code

a guest
Jan 21st, 2018
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.46 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta content="text/html; charset=ISO-8859-1"
  4. http-equiv="content-type">
  5. <title>ApplicationForm</title>
  6. <style type="text/css">
  7. h1 {
  8. border-width: thick;
  9. background-color: #ffffcc;
  10. font-weight: bolder;
  11. font-style: italic;
  12. text-transform: none;
  13. text-align: center;
  14. text-decoration: underline overline;
  15. font-family: Matura MT Script Capitals;
  16. line-height: normal;
  17. color: #3333ff;
  18. font-size: 3.8em;
  19. }
  20. body {
  21. color: red;
  22. font-family: Georgia;
  23. text-transform: none;
  24. text-align: center;
  25. font-style: italic;
  26. font-weight: bold;
  27. }
  28.  
  29. </style>
  30. </head>
  31. <body
  32. style="color: rgb(0, 0, 0); background-color: rgb(255, 255, 204);"
  33. alink="#000099" link="#000099" vlink="#990099">
  34. <form method="post" action="#" name="ApplicationForm">
  35. <h1>Registration Form</h1>
  36. <span style="color: red;">Username: &nbsp;
  37. &nbsp; <input name="Username"><br>
  38. <br>
  39. Password: &nbsp; &nbsp;&nbsp;<input name="Password"
  40. type="password"><br>
  41. <br>
  42. First Name: &nbsp; &nbsp; <input name="First Name"><br>
  43. <br>
  44. Middle Name: &nbsp; &nbsp; <input name="Middle Name"><br>
  45. <br>
  46. Last Name: &nbsp; &nbsp; <input name="Last Name"><br>
  47. <br>
  48. Address: &nbsp; &nbsp; <textarea cols="50" rows="3"
  49. name="Address"></textarea><br>
  50. <br>
  51. Gender: &nbsp; &nbsp; <input name="Male" value="Male"
  52. type="radio">Male &nbsp; <input name="Female"
  53. value="Female" type="radio">Female<br>
  54. <br>
  55. Hobbies: &nbsp; &nbsp; <input name="Singing"
  56. value="Singing" type="checkbox">Singing &nbsp; <input
  57. name="Reading" value="Reading" type="checkbox">Reading
  58. &nbsp; <input name="Dancing" value="Dancing"
  59. type="checkbox">Dancing &nbsp; <input name="Swimming"
  60. value="Swimming" type="checkbox">Swimming &nbsp; <input
  61. name="Cycling" value="Cycling" type="checkbox">Cycling<br>
  62. <br>
  63. PinCode: &nbsp; &nbsp; <input name="PinCode"><br>
  64. <br>
  65. City: &nbsp; &nbsp;
  66. <select name="City">
  67. <option>Surat</option>
  68. <option>Ahmedabad</option>
  69. <option>Vadodara</option>
  70. <option>Ankleshwar</option>
  71. <option>Bharuch</option>
  72. <option>Gandhinagar</option>
  73. <option>Valsad</option>
  74. </select>
  75. <br>
  76. <br>
  77. <input name="Submit" value="Submit" type="submit">
  78. &nbsp; <input name="Reset" value="Reset"
  79. type="reset"><br>
  80. <br>
  81. <br>
  82. <br>
  83. </span><br>
  84. <br>
  85. <br>
  86. <br>
  87. <br>
  88. <br>
  89. <br>
  90. <br>
  91. <br>
  92. <br>
  93. <br>
  94. <br>
  95. <br>
  96. <br>
  97. <br>
  98. <br>
  99. <br>
  100. <br>
  101. <br>
  102. <br>
  103. <br>
  104. </form>
  105. </body>
  106. </html>
Add Comment
Please, Sign In to add comment