katubug

problem 2 html

Apr 20th, 2022 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.57 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" href="problem2.css">
  6. <title>Problem 2</title>
  7. </head>
  8. <body>
  9. <form>
  10. <table class="ftable">
  11. <caption>Personal Information</caption>
  12. <td class="ftable">
  13. <ul class="form">
  14. <li>
  15. <label for="fname"><u>F</u>irst name:</label>
  16. <input type="text" id="fname" name="fname">
  17. </li>
  18. <li>
  19. <label for="lname"><u>L</u>ast name:</label>
  20. <input type="text" id="lname" name="lname">
  21. </li>
  22. <li>
  23. <label for="email"><b><u>E</u>mail:</b></label>
  24. <input type="text" id="email" name="email"><br>
  25. <p class="email">Your email address is safe with us, until we're acquired.</p>
  26. </li>
  27. </ul>
  28. </td>
  29. </table>
  30. <br>
  31. <table class="ftable">
  32. <caption>Comments</caption>
  33. <td class="ftable">
  34. <ul class=form>
  35. <li>
  36. <label for="comments"><u>C</u>omments:</label>
  37. <textarea></textarea>
  38. </li>
  39. <li><p class="email"><button type="submit">Submit</button> <button type="reset">Reset</button></p></li>
  40. </ul>
  41. </td>
  42. </table>
  43. </form>
  44. </body>
  45. </html>
Add Comment
Please, Sign In to add comment