Radio button, checkboxes attribute

i am asked to add value attribute which i already did. below is samples of what i did but still rejected

value=“outdoor”>Outdoor

<label><input id="loving" type="checkbox" name="personality">value="loving"> Loving</label>

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="https://freecatphotoapp.com/submit-cat-photo">
  <label><input id="indoor" type="radio" name="indoor-outdoor"> value="indoor">Indoor</label>
  <label><input id="outdoor" type="radio" name="indoor-outdoor"> value="outdoor">Outdoor</label>
  <label><input id="loving" type="checkbox" name="personality">value="loving"> Loving</label>
  <label><input id="lazy" type="checkbox" name="personality"> value="lazy"> Lazy</label>
  <label><input id="energetic" type="checkbox" name="personality"> value=eEnergetic"> Energetic</label>
  <label><input type>="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Hello @DANIEL4JESUS

You have your value attributes outside the input tag and a typo in one of you values with a missing quotation mark( " ).

Check out this link to see how its been implemented.

Happy Coding.