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 trialJack Cummins
17,417 PointsWhy doesn't this work?
The assignment is: Add a label above the radio button group that says "Shirt Size:". Don't associate it with any specific element.
The error is: You need to use the text "Shirt Size:" within the new label element.
Please help!
I give upvotes and if the answer gives the code out and gives a good explination I give out a best answer.
Thanks!
Jack
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>HTML Forms</title>
</head>
<body>
<form action="index.html" method="post">
<h1>Shirt Order Form</h1>
<label for="color">Shirt Color:</label>
<select id="color" name="shirt_color">
<option value="red">Red</option>
<option value="yellow">Yellow</option>
<option value="purple">Purple</option>
<option value="blue">Blue</option>
<option value="green">Green</option>
<option value="orange">Orange</option>
<label>Shirt Size: </label>
<input type="radio" id="small" value="small" name="shirt_size">
<input type="radio" id="medium" value="medium" name="shirt_size">
<input type="radio" id="large" value="large" name="shirt_size">
</select>
<button type="submit">Place Order</button>
</form>
</body>
</html>
6 Answers
Steven Parker
231,236 PointsI'm surprised you got this far before encountering an error.
All the new code should be placed below the ending " </select>
" tag.
Proper HTML requires that all direct children of a select
element be option
or optgroup
elements.
Tim Strand
22,458 Pointsnice catch. glossed right over that one..
Tim Strand
22,458 PointsYou have a colon and space after shirt size try trimming it to the exact answer for the question.
<label>Shirt Size</label>
<input type="radio" id="small" value="small" name="shirt_size">
<input type="radio" id="medium" value="medium" name="shirt_size">
<input type="radio" id="large" value="large" name="shirt_size">
Steven Parker
231,236 PointsThe challenge actually specifies the colon in the instructions. The space apparently doesn't matter in this case.
But good point, as the challenges are notoriously picky about output strings!
Jack Cummins
17,417 PointsThank you Steven Parker!
Jack Cummins
17,417 PointsSteven Parker though you were actually correct in the first place! I checked your first thing and it said moving on!
Jack Cummins
17,417 PointsTim, you got it wrong. Steven Parker was correct. I gave him the best answer sorry. Who knows though, next time you might get the best answer.
Rachel Blackburn
9,606 PointsRachel Blackburn
9,606 PointsHello there Jack. Lets see if we can't make things work for you. First. In your order form you are selecting two things, one of which is shirt color the other is shirt size. Try adding something In between The option values for the color, and the radio button for the size.
Hint: You have to separate or close the select option for the color before it will recognize the size :)