Help with "Use the value attribute with Radio Buttons and Checkboxes"

Tell us what’s happening:
I’ve seemed to be stuck, I’m trying my best to figure this out but I don’t seem it get what it’s asking me to do.

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" name="indoor-outdoor"> Indoor</label>
  <label><input type="radio" name="indoor-outdoor"> Outdoor</label><br>
  <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>
  <label><input type="checkbox" name="personality"> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" name="personality"> Energetic</label><br>
  <label><input type="checkbox" name="personality"> Loving</label>
  <label><input type="checkbox" name="personality"> Lazy</label>
  <label><input type="checkbox" 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 (Macintosh; Intel Mac OS X 10_13_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.138 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Did you solve it or not yet?
I see that you have put the value to the radio buttons, but you have not done it with the checkbox
Try that and tell me how it goes

Note:
If you look at the left panel at the end of the instructions, it always tells you what task you have yet to complete

I also see that you have duplicate radio buttons, Maybe I should do a “Reset all code” and start calmly

@Izelljay247 You don’t have to create a input to use the attribute value, you have to put into the existing inputs of your code, which is nested within labels.
Try to create the value elemente after ALL the type in you inputs with type radio and checkboxes, also, try to use the input label text in lowercase, as the value for the attribute.
For example:
value=“loving”