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 trialJonathan Slack
3,197 Pointstried everything form the forum and still tells me to set value atribute
<input type="text" value="Hello World">
<!DOCTYPE html>
<html>
<head>
<title>HTML Mastery Challenge</title>
</head>
<body>
<h1>HTML Mastery Challenge</h1>
<!-- Write your code below -->
<div>
<h2>Shopping List</h2>
<ol>
<li>
<li>
<li>
<ol>
<p><strong>This is my shopping list</strong></p>
<form>
<input type="text" name="username" id="username"><br>
<input type="text" value="Hello World">
</form>
</div>
</body>
</html>
2 Answers
Seab Jackson
5,692 PointsYou don't seem to have closing link tags </li>
Sharon Knight
10,675 PointsYou also seem to have two inputs and I think the exercise only requires one. It may be looking for your value attribute in the first input tag.
Jonathan Slack
3,197 PointsThanks Sharon , good call it worked. Thanks to both of you.