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 Text Areas and Selects

Eric Wullenbaecker
Eric Wullenbaecker
1,715 Points

My Essay Area does not show. Is something wrong with my code?

<!DOCTYPE html>

<html lang=β€œen”>
 <head>
  <meta charset=β€œutf-8”>
  <title>My Page</title>
 </head>
<body>
    <form action="#" method="POST" name="my_form">
        <input type="text" name="username"><br>
        <input type="password" name="password"><br>
        <input type="radio" name="gender" value="Male">Male<br>
        <input type="radio" name="gender" value="Female">Female<br>
        <input type="checkbox" name="foods" value="Grapes">Grapes<br>
        <input type="checkbox" name="foods" value="Apples">Apples<br>
        <input type="checkbox" name="foods" value="Bananas">Bananas<br

        <textarea name="essay" rows="10" cols="30"></textarea>


        <input type="submit" value="Continue">
    </form>
 </body>
</html>

1 Answer

Michael Hulet
Michael Hulet
47,912 Points

You don't close your line break tag after "Bananas".