How can I pass the check box challenge

Please someone should tell me what am not doing right in this check box challenge

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">
<form>
  <label for="godly"><input id="godly" type="check box" name="personality">godly</label>
  <label for="kink"><input id="kind" type="check box" name="personality">kind</label>
  <label for="peaceful"><input id="peaceful" type="check box" name="personality">peaceful</label>
</form>  
  <input type="text" placeholder="cat photo URL" required>
  <button type="submit">Submit</button>
</form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; Infinix X650B) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/74.0.3729.136 Mobile Safari/537.36.

Challenge: Create a Set of Checkboxes

Link to the challenge:

why are you writing for= that is not needed

They are adding it because its a best practice:

It is considered best practice to explicitly define the relationship between a checkbox input and its corresponding label by setting the for attribute on the label element to match the id attribute of the associated input element.
Here’s an example of a checkbox:

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

You have a typo. check box != checkbox.
Also, you shouldn’t have removed the radio buttons.