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 Choosing Options Create Checkboxes

Iram Pacheco Garcia
Iram Pacheco Garcia
9,099 Points

Is this question asking everything?

In this part of the challenge I have noticed that the questions is not specifying everything you are expected to answer.

Challenge 3 of 3 in the last section of HTML Forms

1 Answer

Jason Anders
MOD
Jason Anders
Treehouse Moderator 145,858 Points

Hi Iram,

In my opinion, the question is asking what it needs to. Task 3/3 wants you to add values (and text) to the already entered code that Task 1 and Task 2 had you create. The buttons are already made, so Task 3 just wants you to add the "value" and the displayed text with a line break tag after each button so they may display on their own lines.

Task 3 would look like this:

<input type="checkbox" id="shipping" value="fast_shipping"><label for="shipping">Fast Shipping</label><br>
<input type="checkbox" id="newsletter" value="subscribe"><label for="newsletter">Subscribe to Newsletter</label><br>

I hope this helps. Keep Coding! :)