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 trialGhassan Zana
2,845 PointsBummer! You might need more input on this one.
this bummer keeps showing up what ever i do i tried to change the code retake the quiz but its not helping.
my code <div> <h2>Shopping List</h2>
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>
<p>
<strong>Text</strong>
</p>
</div>
<form>
<input type="text" name="Hello World" value="Hello World"><br>
<input type="button" name="input" value="submit">
</form>
2 Answers
alex gwartney
8,849 PointsSo just a couple of things make sure to close your top div tag out. Also change your input type button to input type submit and it should fix the problem
Jason DeValadares
7,190 PointsAlex nailed it. You have a close div but not an open one
<h2>Shopping List</h2>
<ol>
<li>1</li>
<li>2</li>
<li>3</li>
</ol>
<p>
<strong>Text</strong>
</p>
<div></div>
<form>
<input type="text" name="Hello World" value="Hello World"><br>
<input type="button" name="input" value="submit">
</form>
Ghassan Zana
2,845 Pointsthx for your help ,and i have an open div but i miss copied only and the problem was with the input type .
Ghassan Zana
2,845 PointsGhassan Zana
2,845 Pointsoh thanks a lot. it worked with changing the type