Create a set of checkboxes. basic html

Tell us what’s happening:
all data is imput correctly, but it only gives me 2 checkboxes
any idea what i did wrong.

Hello and welcome.
It is hard to help you without seeing the code. Please create a new topic by clicking on Get Help on the challenge that you are having issue then click on Ask for help. It will create a new topic for you with the code that you have written so you can get help easier.

Tell us what’s happening:

all data is imput correctly, but is only creating 2 checkboxes. any ideas?

Your code so far

playful

<input id=“soft” type="checkbox"name=‘personality’> soft

<input id="annoying"type="checkbox"name=“personality”> annoying


<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="https://freecatphotoapp.com/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="playful"><imput id="playful" type="checkbox" name='personality'> playful</label>

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

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

 </form>
</main>

Your browser information:

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

Challenge: Create a Set of Checkboxes

Link to the challenge:

Tell us what’s happening:

i posted 2 other posts, ignore them, i dont know how to deleate. all code is imput correctly but is only giving me 2 checkboxes. any ideas?

Your code so far
playful

<input id=“soft” type="checkbox"name=‘personality’> soft

<input id="annoying"type="checkbox"name=“personality”> annoying


<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="https://freecatphotoapp.com/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="playful"><imput id="playful" type="checkbox" name='personality'> playful</label>

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

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

 </form>
</main>

Your browser information:

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

Challenge: Create a Set of Checkboxes

Link to the challenge:

You created three threads for the same topic. I have combined them for you.

What is a thread? Sorry new to this

Hey @kra!

For this problem, you have misspelled the word input.

<!--change the m to n-->
<label for="playful"><imput id="playful"

A thread is just another way of saying a group of messages and replies. So basically like a discussion online.

Whenever you post the same thing multiple times on the forum the moderators will close the duplicate posts so there is only one post for people to respond to.

If you want to delete a post, all you have to do is click on the more option and than the delete option.

A “thread” or a “forum topic” is this. You created three of them.

Thank you very much!!