Guest User

Untitled

a guest
Jan 20th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <title>FirstExercise</title>
  5. </head>
  6. <body>
  7. <form>
  8. <table border="1">
  9. <tr>
  10. <th>
  11. Last Name
  12. </th>
  13. <td>
  14. <input type="text" name="Last Name" />
  15. </td>
  16. </tr>
  17. <tr>
  18. <th>
  19. First Name
  20. </th>
  21. <td>
  22. <input type="text" name="First Name" />
  23. </td>
  24. </tr>
  25. <tr>
  26. <th>
  27. Address
  28. </th>
  29. <td>
  30. <input type="text" name="Address" />
  31. </td>
  32. </tr>
  33. <tr>
  34. <th>
  35. City
  36. </th>
  37. <td>
  38. <input type="text" name="City" />
  39. </td>
  40. </tr>
  41.  
  42.  
  43. </table>
  44. </form>
  45. </body>
  46. </html>
Add Comment
Please, Sign In to add comment