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

how to add a text input in html?

I forgot how to place a text input, what tags should be inserted?

1 Answer

Viktor,

You'll find the answer quickly on MDN. But you've already got a clue: "input". I'll start you off:

<form>
    <input type="text" blah blah blah>
</form>