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

Bettina Banz
Bettina Banz
1,869 Points

Challenge task 7/8: Just don't understand what you want from me/meaning of your question.

English is not my motherlanguage and it is hard to pass the challenge as I neither understand your task nor the hint you gave me after I typed in the wrong code... What do you want from me? Can you please look at my code and tell me what I did wrong?

My feedback on code challenges in general: It would be VERY helpful if you would add a preview of how the right code would look like in the browser so that people who might have problems with the language could understand what the task is.

Thank You!

2 Answers

geoffrey
geoffrey
28,736 Points

It asks you to put the default Hellow World value to your input. So you just have to add a value attribute with the value asked.

Like that

           <input type="text" value="Hello World">

Note there is no label here, but that's best practice to put one.

Bettina Banz
Bettina Banz
1,869 Points

Thank you a lot for the quick reply :-) I just figured it out.