I am a beginner and I need help with- Basic HTML and HTML5: Create a Set of Checkboxes

Below I have written out my code and it keeps asking me to give my checkboxes the name of personality, even though I have already done that. I am not sure if this is a bug or just my silly mistake. And I was wondering if anybody would be kind enough to help point out what I am doing wrong here. Any pointer and suggestive feedback would be greatly appreciated!

<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"> Personality</label>
    <label for="coolness"> <input id="coolness" type="checkbox" name="personality"> Coolness</label>  
    <label for="cuteness"> <input id="cuteness" type="checkbox" name="personality"> Cuteness</label> 
  </form>
</main>

I am sorry, but could you explain what you mean in simpler terms? I don’t quite understand…

Look at the value for the name attribute. It is missing a leading ".

1 Like

I am so sorry I didn’t see that mistake. Thank you so much for pointing this out to me. Thank you very much!