Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created April 12, 2013 11:06
Show Gist options
  • Save psdtohtml5/5371285 to your computer and use it in GitHub Desktop.
Save psdtohtml5/5371285 to your computer and use it in GitHub Desktop.
HTML : Basic Form Structure
// Html basic form
<form id="" action="" method="post">
<table>
` <tr>
<td>Name</td>
<td>:</td>
<td><input id="" type="text" name="name" /></td>
</tr>
<tr>
<td>E-Mail</td>
<td>:</td>
<td><input id="" type="text" name="email" /></td>
</tr>
<tr>
<td>Contact Number</td>
<td>:</td>
<td><input id="" type="text" name="contact-number" /></td>
</tr>
<tr>
<td><textarea rows="4" cols="50"></textarea></td>
</tr>
<tr>
<td><input id="" type="submit" name="submit" /></td>
</tr>
</table>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment