Advertisement
Guest User

html

a guest
Oct 21st, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <!doctype html>
  2. <head>
  3. <h1> Hello seu </h1>
  4. <body>
  5. <p> Creating a form: </p>
  6.  
  7.  
  8. <table>
  9. <tr>
  10. <td> First Name </td>
  11. <td>
  12. <form>
  13. <input type="text" size="10" >
  14. </form>
  15. </td>
  16. </tr>
  17.  
  18. <tr>
  19. <td> Last Name </td>
  20. <td>
  21. <form>
  22. <input type="text" size="10" >
  23. </form>
  24. </td>
  25. </tr>
  26.  
  27.  
  28. <tr>
  29. <td> Gender </td>
  30. <td>
  31. <form>
  32. <input type="radio"> Male
  33. <input type="radio"> Female
  34. </form>
  35. </td>
  36. </tr>
  37.  
  38.  
  39. <tr>
  40. <td> Phone Number </td>
  41. <td>
  42. <form>
  43. <input type="text" size="10" >
  44. </form>
  45. </td>
  46. </tr>
  47.  
  48. <tr>
  49. <td> E-mail </td>
  50. <td>
  51. <form>
  52. <input type="text" size="10" >
  53. </form>
  54. </td>
  55. </tr>
  56.  
  57. <tr>
  58. <td> kind oif contact</td>
  59. <td>
  60. <form>
  61. <select>
  62. <option> Interview Request </option>
  63. <option> Membership Question </option>
  64. <option> Internal Liasio Question </option>
  65. <option> Technology Question</option>
  66. </select>
  67. </form>
  68. </td>
  69. </tr>
  70.  
  71. <tr>
  72. <td> Comment </td>
  73. <td>
  74. <form>
  75. <textarea wrap="virtual" maxlength="100" >
  76. </form>
  77. </td>
  78. </tr>
  79. </table>
  80.  
  81.  
  82. </form>
  83. </body>
  84.  
  85. </head>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement