Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trial
Alex Zayika
93 PointsWere would i put my email?
<section> <form method="post" action="#"> <div class="row uniform"> <div class="6u 12u$(xsmall)"> <input type="text" name="demo-name"
id="demo-name" value="" placeholder="Name" /> </div> <div class="6u$ 12u$(xsmall)"> <input type="email" name="demo-email"
id="demo-email" value="" placeholder="Email" /> </div> <div class="12u$"> <div class="select-wrapper"> <select name="demo-category"
id="demo-category"> <option value="">-
Category -</option> <option value="1">Web
Design</option> <option
value="1">Help</option> <option
value="1">Other</option> </select> </div> </div> <div class="4u 12u$(small)"> <input type="radio" id="demo-priority-
low" name="demo-priority" checked> <label for="demo-priority-
low">Low</label> </div> <div class="4u 12u$(small)"> <input type="radio" id="demo-priority-
normal" name="demo-priority"> <label for="demo-priority-
normal">Normal</label> </div> <div class="4u$ 12u$(small)"> <input type="radio" id="demo-priority-
high" name="demo-priority"> <label for="demo-priority-
high">High</label> </div> <div class="6u 12u$(small)"> <input type="checkbox" id="demo-copy"
name="demo-copy"> <label for="demo-copy">Email me a
copy</label> </div> <div class="6u$ 12u$(small)"> <input type="checkbox" id="demo-human"
name="demo-human" checked> <label for="demo-human">Not a
robot</label> </div> <div class="12u$"> <textarea name="demo-message" id="demo-
message" placeholder="Enter your message" rows="6"></textarea> </div> <div class="12u$"> <ul class="actions"> <li><input type="submit"
value="Send Message" class="special" /></li> <li><input type="reset"
value="Reset" /></li> </ul> </div> </div> </form> </section>
</div>
</section>
Justin Budd
12,210 PointsJustin Budd
12,210 Pointsis your question referring to where you would put your email so the form is sent to you? or where would someone filling out your form place their email? also i noticed your drop down option help and other have the same value. That could cause problems when the form is processed.