Important Notice:

HTML Tables & Forms

HTML Tables & Forms

16 views 1 min read

Tables<table border="1">\n <tr><th>Name</th><th>Age</th></tr>\n <tr><td>Rahul</td><td>20</td></tr>\n</table>Forms<form action="submit.php" method="POST">\n <input type="text" name="name" required>\n <input type="email" name="email">\n <textarea name="msg"></textarea>\n <input type="submit" value="Submit">\n</form>Input Types

  • text, email, password, number, date
  • checkbox, radio, file
  • submit, reset, button

Related Notes