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 trialRicard Taujenis
4,383 PointsDose not seem to recall my placement
Options have to be inside the selector but it isnt functioning properly?
<!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>
<select ID="color" name="shirt_color" option="Red" "Yellow" "Purple" "Blue" "Green" "Orange"></select>
</form>
</body>
</html>
2 Answers
Samuel Glister
12,471 PointsHi Ricard,
Before anyone gives the answer away I recommend reviewing the course videos on how to create a select menu.
You could also have a look at the documentation on MDN here which may be of help to you..
https://developer.mozilla.org/en/docs/Web/HTML/Element/select
If you are still having issues let me know and I will try to help you further.
phanchau
7,001 PointsHello Ricard, <option> must be inside the <select></select> elements like this : <select> <option>Red</option> <option>Yellow</option> <option>Purple</option> <option>etc</option> </select>
Then the ID attribute shoulder better in lowercase and finally the values of id and name must be the same.
Cheers.
Phan