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 trialvenel rene
482 Pointsisn't action="index.html" consider a attribute?
form challegen
1 Answer
james mccarthy
6,013 PointsI 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>
Jack Choi
11,420 PointsJack Choi
11,420 PointsYes 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...