Don't understand how to solveOne of your checkboxes should have the value attribute of loving

Tell us what’s happening:
I don’t know how to fix my “loving” code.

  **Your code so far**

<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://www.bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
  <label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
  <label for="outdoor"><input id="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <label for="loving"><input id="loving" type="checkbox" name="personality">Loving</label>
  <label for="lazy"><input id="lazy" type="checkbox" name="personality"> Lazy</label>
  <label for="energetic"><input id="energetic" type="checkbox" name="personality">Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
 <label for="indoor">
<input id="indoor" value="indoor" type="radio" name="indoor-outdoor">Indoor
</label>
<label for="outdoor">
<input id="outdoor" value="outdoor" type="radio" name="indoor-outdoor">Outdoor
</label>
<input id="loving" value="loving" type="checkbox" name="personality">loving 
</label>
<label for="lazy"> 
<input id="lazy" value="lazy" type="checkbox" name="personality">Lazy
</label>
<label for="energetic"> 
<input id="energetic" value="energetic" type="checkbox" name="personality">Energetic
</label>
</form>
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.2 Safari/605.1.15.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

It looks like you have two sets of these buttons.

You should add values only to the first set, and the second set shouldn’t be there.

There are minor typos between the first set and the second set that are making the tests fail.

I deleted them and now all of them are wrong when before only the loving one was wrong

Now you need to add the value attributes to the first set.

I deleted the first set and kept the second one and all of them are right except the loving one. The second set has the values

  1. Delete the second set

  2. Add the attributes to the first set

Please listen when you are asking for help

The solution went through

you can reset your code and try again

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.