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 Textarea

On the textarea element, add an id attribute and set the value to "comment"

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>HTML Forms</title>
  </head>
  <body>

  </body>
</html>

<form action="index.html" method="post">
<input type="text" id= "name" name="user_name">
<textarea id="bio" name="comment"></textarea>

1 Answer

Hey Ambria, I went ahead and fixed your post. HTML code won't show up unless you format it properly, so check out that markdown cheatsheet when you get a chance.

This step is asking you to set the textarea id to comment. This is what you've written -

<textarea id="bio" name="comment"></textarea>

Here you have the id set to bio and name set to comment, so this isn't what we want. According to the code challenge, this is what you would need to type -

<textarea id="comment"></textarea>

Hope this helps!