Using value attribute with checkbox

Tell us what’s happening:

keeps asking me that one of my checkbox should have the value attribute of loving and i’m pretty sure my code is ok

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://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="/submit-cat-photo">
  <label><input type="radio" value="indoor" name="indoor-outdoor"> Indoor</label>

  <label><input type="radio" value="outdoor" 
  name="indoor-outdoor"> Outdoor</label><br>
 
  <label><input type="checkbox" value="Loving" 
  name="personality"> loving</label>

  <label><input type="checkbox"value="lazy"
  name="personality"> Lazy</label>

  <label><input type="checkbox" value="energetic" 
  name="personality"> Energetic</label><br>
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/80.0.3987.87 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

You have the value and the contents swapped. You have the value as “Loving” instead of “loving” and the contents as “loving” instead of “Loving”.

thank you, that worked !

I’m glad I could help. Happy coding!

1 Like