Html

Html


  1. <Html>  
  2. <head>   
  3. <title>  
  4. Registration Page  
  5. </title>  
  6. </head>  
  7. <body bgcolor="Lightskyblue">  
  8. <br>  
  9. <br>  
  10. <form>  
  11.   
  12. <label> Firstname </label>         
  13. <input type="text" name="firstname" size="15"/> <br> <br>  
  14. <label> Middlename: </label>     
  15. <input type="text" name="middlename" size="15"/> <br> <br>  
  16. <label> Lastname: </label>         
  17. <input type="text" name="lastname" size="15"/> <br> <br>  
  18.   
  19. <label>   
  20. Course :  
  21. </label>   
  22. <select>  
  23. <option value="Course">Course</option>  
  24. <option value="BCA">BCA</option>  
  25. <option value="BBA">BBA</option>  
  26. <option value="B.Tech">B.Tech</option>  
  27. <option value="MBA">MBA</option>  
  28. <option value="MCA">MCA</option>  
  29. <option value="M.Tech">M.Tech</option>  
  30. </select>  
  31.   
  32. <br>  
  33. <br>  
  34. <label>   
  35. Gender :  
  36. </label><br>  
  37. <input type="radio" name="male"/> Male <br>  
  38. <input type="radio" name="female"/> Female <br>  
  39. <input type="radio" name="other"/> Other  
  40. <br>  
  41. <br>  
  42.   
  43. <label>   
  44. Phone :  
  45. </label>  
  46. <input type="text" name="country code"  value="+91" size="2"/>   
  47. <input type="text" name="phone" size="10"/> <br> <br>  
  48. Address  
  49. <br>  
  50. <textarea cols="80" rows="5" value="address">  
  51. </textarea>  
  52. <br> <br>  
  53. Email:  
  54. <input type="email" id="email" name="email"/> <br>    
  55. <br> <br>  
  56. Password:  
  57. <input type="Password" id="pass" name="pass"> <br>   
  58. <br> <br>  
  59. Re-type password:  
  60. <input type="Password" id="repass" name="repass"> <br> <br>  
  61. <input type="button" value="Submit"/>  
  62. </form>  
  63. </body>
  64. </html>


Report Page