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

JavaScript Treehouse Club - MASH MASH - HTML Forms, Divs, and Inputs

I need my <div> elements to both have 'class' attributes, and I don't know what that means.

I dont know what 'cless' means

index.html
<body>
  <h1>When You Move In</h1>

  <form>

    <div>
      <h4>Favorite School?</h4>
      <input name="school[]">
      <input name="school[]">
      <input name="school[]">
      <input name="school[]">
    </div>

    <div>
      <h4>Favorite Pets?</h4>
      <input name="pet[]">
      <input name="pet[]">
      <input name="pet[]">
      <input name="pet[]">
    </div>

  </form>

</body>

1 Answer

Steven Parker
Steven Parker
229,732 Points

Take a look at the "input" elements in this code as an example, each one as a "name" attribute which is established by the word "name", an equal sign, and then the contents in quotes.

Adding a "class" attribute would look very similar except the word "class" would appear before the equal sign. And of course the contents in quotes would be what the instructions are asking for.