Basic HTML Form


/ Published in: HTML
Save to your folder(s)



Copy this code and paste it in your HTML
  1. <form id="form" name="form" action="">
  2. <table width="auto">
  3. <tr>
  4. <td>Name: </td>
  5. <td><input type="text" name="name" /></td>
  6. </tr>
  7. <tr>
  8. <td>Content: </td>
  9. <td><textarea name="content" rows="30" cols="60"></textarea>
  10. </tr>
  11. </table>
  12. </form>

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.