Advertisement
Guest User

Untitled

a guest
Jan 29th, 2020
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. <html>
  2. <body>
  3. <table border=1 cellpadding=5 cellspacing=5 align=center>
  4. <tr>
  5. <td>Full name</td>
  6. <td>
  7. <form><input type="text" size=25></form>
  8. </td>
  9. </tr>
  10. <tr>
  11. <td>Grade</td>
  12. <td>
  13. <form>
  14. <select>
  15. <option>12A</option>
  16. <option>12B</option>
  17. <option>12GA</option>
  18. <option>12GB</option>
  19. </select>
  20. </form>
  21. </td>
  22. </tr>
  23.  
  24. <tr>
  25. <td>Gender:</td>
  26. <td>
  27. <form>
  28. <input type="radio" name="best"> Male <br>
  29. <input type="radio" name="best"> Female <br>
  30. </form>
  31. </td>
  32. </tr>
  33.  
  34. <tr>
  35. <td>Favorite Subjects</td>
  36. <td>
  37. <form>
  38. <input type="checkbox">Computer <br>
  39. <input type="checkbox">English <br>
  40. <input type="checkbox">Accounting <br>
  41. <input type="checkbox">Business <br>
  42. </form>
  43. </td>
  44. </tr>
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55. </table>
  56. <br><br><br>
  57. <center><input type="submit"></center>
  58.  
  59. </body>
  60. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement