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 Form Basics Create a Form Element

isn't action="index.html" consider a attribute?

form challegen

Jack Choi
Jack Choi
11,420 Points

Yes the action="index.html" would be an attribute; I'm guessing the first step just wanted the user to create an empty form element without any attributes. So I'm guessing something like <form /> or <form></form> should work...

1 Answer

I can see you're are starting out, the course that would be suited to you would be "how to make a web site" with nick p. he was were i started and has go me so far in my learning. I believe it is

form action="index.html" method="post">

<input type="text" id="name" name="user_name">

<textarea id="comment" name="user_comment">

<button>Submit Comment</button>

</form>