Guest User

Untitled

a guest
Aug 24th, 2017
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.94 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Registration Page</title>
  4. </head>
  5. <style>
  6. body {
  7. font-family: bold
  8. }
  9. form li{
  10. list-style:none;
  11. margin-bottom:10px;
  12. align-content:center;
  13. }
  14. form ul,li{
  15. float:left;
  16. clear:left;
  17. margin:5px;
  18. padding:5px;
  19. }
  20. form input{
  21. align-content:center;
  22. float:right;
  23. }
  24. </style>
  25. <body>
  26. <h1></h1>
  27.  
  28. <form>
  29. <ul type="none">
  30. <li><label>First Name:</label>
  31. <input type="text" placeholder="First Name">
  32. </li>
  33. <li><label>Last Name:</label>
  34. <input type="text" placeholder="Last name">
  35. </li>
  36. <li><label>Username:</label>
  37. <input type="text" placeholder="Username">
  38. </li>
  39. <li><label>Password:</label>
  40. <input type="password" placeholder="Password">
  41. </li>
  42. <li><label>Date of Birth:</label>
  43. <input type="date">
  44.  
  45. <li><label>Email:</label>
  46. <input type="email" placeholder="example@example.com">
  47. </li>
  48.  
  49. <li>
  50. <label >Gender (Male/Female): </label>
  51. </li>
  52. <li><input name="gender" type="radio" value="male"><span>Male </span> </li>
  53.  
  54. <li><input name="gender" type="radio" value="female"><span>Female </span> </li>
  55.  
  56. </li>
  57.  
  58. <li><label>Phone Number:</label>
  59. <input type="tel">
  60. </li>
  61. <li><label>Country:</label>
  62. <select name="test">
  63. <option value="Default">India</option>
  64. <option>Australia</option>
  65. <option>USA</option>
  66. <option>New Zealand</option>
  67. </select>
  68. </li>
  69. <li>
  70. <label for="addr">Address: </label>
  71. <textarea id="addr">Enter your residential address</textarea></li>
  72. <li>
  73. <label for="time">Time: </label>
  74. <input type="time" value="Submit">
  75. </li>
  76. <li>
  77. <label for="color">Color: </label>
  78. <input type="color" value="Submit">
  79. </li>
  80.  
  81.  
  82.  
  83.  
  84. <li>
  85. <label>Range: </label>
  86. <input type="range">
  87. </li>
  88. <li>
  89. <label>Upload Picture: </label>
  90. <input type="file">
  91. </li>
  92. <li>
  93. <label>Search: </label>
  94. <input type="search">
  95. </li>
  96. <li>
  97. <input type="datetime-local" value="Reset">
  98. </li>
  99. <li><input type="submit" value="Submit">
  100. </li>
  101. <li>
  102. <input type="reset" value="Reset">
  103. </li>
  104.  
  105. </ul>
  106. </form>
  107. </body>
  108. </html
Add Comment
Please, Sign In to add comment