Created
April 19, 2013 16:08
-
-
Save AndriyShepitsen/5421363 to your computer and use it in GitHub Desktop.
contact form
This file contains 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
<form method="get", action="#"> | |
<ul id="contactUsForm"> | |
<li><label for="firstName">First Name</label> | |
<input type="text" name="firstName" id="firstName"> </li> | |
<li><label for="lastName">Last Name</label> | |
<input type="text" name="lastName" id="lastName"></li> | |
<li><label for="email">Email</label> | |
<input type="text" name="email" id="email"></li> | |
<li><label for="phone">Phone</label> | |
<input type="text" name="phone" id="phone"></li> | |
<li><label for="subject">Subject</label> | |
<input type="text" name="subject" id="subject"></li> | |
<li><label for="message">Message</label> | |
<textarea id="message" name="message" cols="50" rows="15"></textarea></li> | |
<li> | |
<input id="submit" type="button" name="submit" value="Submit"></li> | |
</ul> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment