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 trialNathan Magyar
11,332 PointsHTML Form Text Input Problem
I have created a form with text input. I am trying to set the text input to contain "Hello world." The challenge tells me to set the value, so I did, as you'll see in my attached code. What am I missing?
<!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>Food</li>
<li>Clothes</li>
<li>Cleaning supplies</li>
</ol>
<p>Wanna see<STRONG> bold</STRONG> text?</p>
<form>
<input type="text" name="Hello world" value="Hello world">
</form>
</div>
</body>
</html>
2 Answers
Shawn Flanigan
Courses Plus Student 15,815 PointsNathan,
Two minor things (but the little things matter a lot when coding):
- The challenge doesn't ask you to give the input a name attribute, so you'll want to remove that.
- Even more minor...you'll need to capitalize "world"
Hope that helps!
Nathan Magyar
11,332 PointsThanks Shawn! That did it. I figured it was something tiny I was missing. 'Glad you caught it :) Thanks again!