Checkbox and radio button

Tell us what’s happening:

Your code so far




<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 for="loving"><input id="loving" type="checkbox" name="personality" value="loving"> Loving</label>
<label for="lazy"><input id="lazy" type="checkbox" name="lazy" value="lazy">lazy</label>






Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36.

Challenge: Use the value attribute with Radio Buttons and Checkboxes

Link to the challenge:

Hello @Aman_mistry ,
don’t know where are you struggling on this exercise , but:
1.name has to be equal for all three checkboxes

name = "personality"

2 the word displayed in your html must starts with an upperscore , i.e. Lazy .
3 you are missing the third one, the energetic!