Checkbox errors

Tell us what’s happening:
Getting errors of:
Needing 3 checkbox elements
Each needs to be nested in its own label element
Each needs to be given the name =“personality”

Anybody see what I am missing?

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>

  <label for=“loving”><input id=”loving“ type=“checkbox” name=“personality”> Loving</label>
  <label for=“wistful”><input id=“wistful” type=“checkbox” name=”personality“> Wistful</label>
  <label for=“charming”><input id=“charming” type=“checkbox” name=“personality”> Charming</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 (iPad; CPU OS 12_3_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.1 Mobile/15E148 Safari/604.1.

Challenge: Create a Set of Checkboxes

Link to the challenge:

you are using the wrong quotes:
these are an illegal character in coding: “”
you need to use these: ""

if you have a smart punctuation feature or something like that you may want to turn it off

Awesome thank you, such a simple fix.