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 trialUnsubscribed User
3,136 Pointsi'm having issues with this 7th task on the HTML final code challenge. i've already set the value attribute.
i've set the value attribute to "hello world" and i assume that's meant to be what the task requires me to do but it doesn't let me progress. instead it tells me to "set the value attribute".
<!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>Coconut oil</li>
<li>Mangoes</li>
<li>Tape</li>
</ol>
<p><strong>Hello world</strong></p>
<form>
<input type="text" value="Hello world">
</form>
</div>
</body>
</html>
2 Answers
Codin - Codesmite
8,600 PointsYou need to capatalize the "W" in "World" to pass the question.
<!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>Coconut oil</li>
<li>Mangoes</li>
<li>Tape</li>
</ol>
<p><strong>Hello world</strong></p>
<form>
<input type="text" value="Hello World">
</form>
</div>
</body>
</html>
Michell Ayala
7,433 PointsYou need to use "hello world" instead. Camel Case Sensitive.