<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.2.0/css/font-awesome.min.css">
<header>
<nav>
<ul id="breadcrumbs">
<li><a href="#">Home</a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Email</a></li>
</ul>
<input type="checkbox" id="dropdown_button">
<label for="dropdown_button">Display Dropdown</label>
<ul id="dropdown">
<li><a href="#">About Us</a></li>
<li><a href="#">Products</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
<h1>Contact the Team</h1>
</header>
<section>
<h2>We'd Love to Hear From You</h2>
<p>Do you have any lingering questions or comments? Fill out this brief form, and we'll get back to you within a business day. If you need a quicker reply, consider beginning a free trial of our <a href="#">consulting service</a>.</p>
<form>
<span class="legend">Tell us about yourself.</span>
<div class="flexparent">
<div>
<input type="text" name="name" id="name" required>
<label for="text">Your Name</label>
</div>
<div>
<input type="text" name="email" id="email" required>
<label for="text">Your Email</label>
</div>
</div>
<div class="flexparent">
<div>
<span class="legend">To what do we owe the pleasure?</span>
<input type="radio" name="reason" id="reason_inquiry" value="inquiry">
<label for="reason_inquiry">Products or Services Inquiry</label> <br>
<input type="radio" name="reason" id="reason_support" value="support">
<label for="reason_support">Technical Questions</label> <br>
<input type="radio" name="reason" id="reason_other" value="other">
<label for="reason_other">Other Reasons</label>
</div>
<div>
<span class="legend">How should we get in touch?</span>
<input type="checkbox" name="contact" id="contact_phone" value="phone">
<label...