Skip to content

Instantly share code, notes, and snippets.

@psdtohtml5
Created April 20, 2013 09:42
Show Gist options
  • Save psdtohtml5/5425421 to your computer and use it in GitHub Desktop.
Save psdtohtml5/5425421 to your computer and use it in GitHub Desktop.
HTML : Basic Contact Form
<table>
<form action="" method="">
<tr>
<td>Name</td>
<td><input type="text" class="" name="username" /></td>
</tr>
<tr>
<td>E-Mail</td>
<td><input type="text" class="" name="email" /></td>
</tr>
<tr>
<td>Contact Number</td>
<td><input type="text" class="" name="contact_number" /></td>
</tr>
<tr>
<td>Address</td>
<td><input type="text" class="" name="address" /></td>
</tr>
<tr>
<td class="normalfont"></td>
<td>
<input type="submit" class="formButton" value="Register" />
</td>
</tr>
</form>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment