Basic HTML and HTML5: Create a Set of Checkboxes<I'm back again lol>

I have tried a few times to figure out what I’m doing wrong. I keep getting an error code I just can’t figure out what I am doing wrong. Note: I had Personality before the other words, I just tried that because I can’t figure out what I am doing incorrectly. Thank you for any help you can offer. Also, I did read the examples, many times, I don’t really need a copy/paste of the same directions I am asking help for, lol. Maybe if someone wants to write it differently with way different names, that would help, but I am not getting the examples that are given already. Thank you again!

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 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>
   <input type="text" placeholder="cat photo URL" required>
   <button type="submit">Submit</button>
   
 <label for="Personality"><input id="Personality" type="checkbox" name="Personality">Sweet</label>

<label for="Personality"><input id="personality" type="checkbox" name="Personality">Loud</label>

<label for="personality"><input id="personality" type="checkbox" name="Personality">Lazy</label>
     </form>
</main>

Your browser information:

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

Challenge: Create a Set of Checkboxes

Link to the challenge:

the name should be in lowercase

all ids must be unique

Hi thank you. So, Yep. did that. Still says the same thing

personality (in lowercase ) not Personality . Change for id and name attributes. Check below.

<label for="personality"><input id="personality" type="checkbox" name="personality">Sweet</label>

<label for="personality"><input id="personality" type="checkbox" name="personality">Loud</label>

<label for="personality"><input id="personality" type="checkbox" name="personality">Lazy</label>

post again your code if you did that and it is still not passing

I finally figured it out, ty. I’m now having more issues on css style lesson lol.

you can always use the Ask for help button and ask for help if you get stuck