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 trial

HTML HTML Forms HTML Mastery

Html another problem ??

The challenge 7 of 8 : Set that text input to contain "Hello World". I tried as well, but it does not work, please help me

index.html
<!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>Uno</li>
        <li>Due</li>
        <li>Tre</li>
      </ol>
    </div>

    <p> <strong> Hello </strong> </p>

    <form>
    <input type="text" value="helloworld"> Hello World!
    </form>



  </body>
</html>

1 Answer

Your input field should look like this: <input type="text" value="Hello World"> Plus, delete the "Hello World" you wrote behind the closing >. It doesn't belong to anywhere, it's just floating around in your document as it's not enclosed by any tags. An input element doesn't really have text content like an h1 or p element between two tags, its content is given to it with the attribute "value". As you might have noticed, <input> elements don't have a closing tag, either (nor do they need it).