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 have no idea how to answer this question and I have nowhere to go on the page. No option to rewatch a video step

I just need to be able to complete this question but I can't do it without more info. There is no option to go back and re watch a step or read over notes about this question. It's weird that this is the only option I have in order to move forward.

index.html
<body>
  <h1>First Day of School</h1>

  <form>

    <div>

      <h4 class="Favorite Foods?"></h4>
      <input name="food[]">
      <input name="food[]">
      <input name="food[]">
      <input name="food[]">
    </div>

    <div>

      <h4> class="Favourite Animals?"></h4>
      <input name="animal[]">
      <input name="animal[]">
      <input name="animal[]">
      <input name="animal[]">
    </div>

  </form>

</body>

1 Answer

Henrik Christensen
seal-mask
.a{fill-rule:evenodd;}techdegree
Henrik Christensen
Python Web Development Techdegree Student 38,322 Points

To re-watch the videos you can click those white circles in the red bar just above the challenge.

The challenge ask you to add class="favorite_stuff" to your <div> - you are not supposed to add any new tags in this challenge.