Created
April 12, 2013 11:06
-
-
Save psdtohtml5/5371285 to your computer and use it in GitHub Desktop.
HTML : Basic Form Structure
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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