Create a Set of Checkboxes but there are no gaps

Tell us what’s happening:

My code is fine, except that there is literally no gaps between the last two checkboxes and the types (for example there is no space between the checkbox and the word ‘Mean’.

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="mean"><input id="mean" type="checkbox" name="personality">Mean</label>
    <label for="sleepy"><input id="sleepy" type="checkbox" name="personality">Sleepy</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 (Windows NT 10.0; Win64; x64; rv:67.0) Gecko/20100101 Firefox/67.0.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-set-of-checkboxes

If you will look at lines 21, 22, and 23, you will see a space between the input tag and the text that goes next to the button ex.
<label for="indoor"><input id="indoor" type="radio" name="indoor-outdoor"> Indoor</label>

So instead of the checkbox being next to “Indoor” it is next to " Indoor".
It may seem like a small change, but yours is a small problem :slight_smile: .

Welcome to the community, and good luck going forward! Feel free to post any more questions, we’re happy to help.

Thankyou. I made the changes, and a space before ‘mean’ and ‘sleepy’ now!