Skip to content

Instantly share code, notes, and snippets.

@AndriyShepitsen
Created April 19, 2013 16:08
Show Gist options
  • Save AndriyShepitsen/5421363 to your computer and use it in GitHub Desktop.
Save AndriyShepitsen/5421363 to your computer and use it in GitHub Desktop.
contact form
<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