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 trialWilliam Domenech
7,259 Pointswhen i add the label tag it doesnt go striaght to the colum its suppose to go to
<form action="index.hmtl" method="post">
<h1>Sign Up!</h1>
<lable for="name">Name:</lable>
<input type="text" id="name" name="user_name">
<label for"mail">Email:</label>
<input type="email" id="mail" name="user_email">
<label for="password">Password:</label>
<input type= "password" id ="password" name="user_password">
<textarea id="bio" name="user_bio"></textarea>
<button type="submit">Sign up!</button>
</form>
2 Answers
Bella Bradbury
Front End Web Development Techdegree Graduate 32,790 PointsWilliam,
In the email's for
attribute you're missing the =
before the value!
William Domenech
7,259 Pointsah, i see its the little things that will have me tearing my hair off