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 trialAntonio García
5,572 PointsAdd a submit button with the text Place Order (code challenge)
I don't know which solution is or if its a bug. Ty!
<!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="red">Red</option>
<option value="red">Red</option>
<option value="red">Red</option>
<option value="red">Red</option>
<button type="submit">Place Order</button>
</form>
</body>
</html>
4 Answers
David Tonge
Courses Plus Student 45,640 PointsFigured it out.
<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="red">Red</option>
<option value="red">Red</option>
<option value="red">Red</option>
<option value="red">Red</option>
</select>
<button type="submit">Place Order</button>
</form>
The button element is in fact what they're using for this challenge but you forgot to close the "select" element before the button.
David Tonge
Courses Plus Student 45,640 PointsHey Antonio,
Very close but when using a button for a form you should use an "input" element instead of "button". Other than than your syntax is correct.
<input type="submit" value="Place Order">
David Tonge
Courses Plus Student 45,640 PointsI made an edit to my syntax.
Antonio García
5,572 Pointsty very much for the quick answer! but it still gives me error "you need to add a <button> element within the form" :/
Antonio García
5,572 Pointsthat's it! lol I was so far to the correct answer.. ty for everything!
David Tonge
Courses Plus Student 45,640 PointsNo prob. Syntax highlighting actually helped me to arrive at an answer for you. Is a small thing but helps a lot.