Guest User

Untitled

a guest
Sep 30th, 2016
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. <html>
  2. <title> Working with Forms </title>
  3. <body bgcolor="lightyellow">
  4. <form>
  5. <br><B><font color="blue"> Class Information</font></B><br><br><br>
  6. <label> Full name &nbsp;&nbsp;: </label>&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="fullname" value=""><br>
  7. <label> E-Mail &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;: </label>&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="email" value=""><br>
  8. <label> Phone No. &nbsp;&nbsp;: </label>&nbsp;&nbsp;&nbsp;&nbsp;<input type="text" name="phone" value=""><br>
  9. <br>
  10. <B><font color="blue">Enrollment</font></B>
  11. <br>
  12. <br>In what session are you enrolled?<br>
  13. <input type="radio" name="session" value="day">Day session
  14. <input type="radio" name="session" value="evening">Evening session
  15. <input type="radio" name="session" value="weekend">Weekend session
  16. <br>
  17. <br>
  18. <br>
  19. <B><font color=blue> What Year are you?</font></B>
  20. <p>
  21.  
  22. <SELECT name="experience" size=4 >
  23. <option selected> Freshman
  24. <option> Sophomore
  25. <option> Junior
  26. <option> Senior
  27. <option> Post Graduate
  28. <option> Visiting student
  29. <option> Other
  30. </SELECT>
  31. </p>
  32. <br>a
  33. <P><B><font color="blue">Favorites</font></B>
  34. <br>Select your favorite topic(s)?
  35. <input type="checkbox" name="favorites" value="none"> None<br>
  36. <input type="checkbox" name="favorites" value="windows"> Windows
  37. <input type="checkbox" name="favorites" value="unix">UNIX
  38. <input type="checkbox" name="favorites" value="web">The Web
  39. <input type="checkbox" name="favorites" value="news">Newsgroups
  40.  
  41. </p>
  42. <br>
  43. <P><B><font color="blue">Others</font></B>
  44. <br>Please type in the text box below if you want to comment?
  45. <br><textarea ROWS="2" COLS="40" name="comments"></textarea></p>
  46.  
  47.  
  48. <br>
  49. <hr>
  50. <input type="submit" name="submitbutton"
  51. value="Process Data">
  52. <input type="reset" name="resetbutton" value="Cleardata">
  53. <hr>
  54. <br>
  55. <p> Enter User name and Password:</p>
  56. <p>
  57. Username: <input type="text" size="30" />
  58. Password: <input type="password" size="30" />
  59. </p>
  60.  
  61.  
  62. <p> Use the browse button to select
  63. file:</p>
  64. <p>
  65. <input type="file" size="30" />
  66. </p>
  67.  
  68. <p> Click the image to submit </p>
  69. <input type="image" src="van.jpg"
  70. alt="submit button" />
  71.  
  72. </form>
  73.  
  74.  
  75. </body>
  76. </html>
Add Comment
Please, Sign In to add comment