Skip to content

Instantly share code, notes, and snippets.

@AJ-Acevedo
Created January 12, 2014 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AJ-Acevedo/8388931 to your computer and use it in GitHub Desktop.
Save AJ-Acevedo/8388931 to your computer and use it in GitHub Desktop.
Bootstrap 3 Contact Form
<form role="form">
<div class="form-group">
<label for="contactForm">Contact Us</label>
</div>
<!-- TODO: Move styles into style.css -->
<div class="form-group">
<input type="text" class="form-control" style="width:233px" placeholder="Your First Name">
</div>
<div class="form-group">
<input type="text" class="form-control" id="lastInput" style="width:233px" placeholder="Your Last Name">
</div>
<div class="form-group">
<input type="email" class="form-control" id="emailInput" style="width:233px" placeholder="Your email address">
</div>
<div class="form-group">
<input type="text" class="form-control" id="subjectInput" style="width:233px" placeholder="Subject">
</div>
<div class="form-group">
<textarea name="message" class="form-control" id="messageInput" style="width:400px" rows="8" placeholder="Your Message"></textarea>
</div>
<div class="form-group">
<button type="submit" class="btn btn-info">Send</button>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment