Learn HTML by Building a Cat Photo App - Step 57

Tell us what’s happening:
Describe your issue in detail here.

what does this mean? it keeps telling me that i am wrong every step. it isnt clear enough. it just says id attribute, but gives me no examples at all.

how i managed to get this far is astounding even me, because this is very confusing.

can someone please explain what i have to do?

Your new checkbox should have an id attribute with the value lazy and a name attribute with the value personality. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.

what does this mean? my code is below. please can somebody help. thank you.
Your code so far

<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
      <a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
    </section>
    <section>
      <h2>Cat Lists</h2>
      <h3>Things cats love:</h3>
      <ul>
        <li>cat nip</li>
        <li>laser pointers</li>
        <li>lasagna</li>
      </ul>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
        <figcaption>Cats <em>love</em> lasagna.</figcaption>  
      </figure>
      <h3>Top 3 things cats hate:</h3>
      <ol>
        <li>flea treatment</li>
        <li>thunder</li>
        <li>other cats</li>
      </ol>
      <figure>
        <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
        <figcaption>Cats <strong>hate</strong> other cats.</figcaption>  
      </figure>
    </section>
    <section>
      <h2>Cat Form</h2>
      <form action="https://freecatphotoapp.com/submit-cat-photo">
        <fieldset>
          <legend>Is your cat an indoor or outdoor cat?</legend>
          <label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor"> Indoor</label>
          <label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
        </fieldset>
        <fieldset>
          <legend>What's your cat's personality?</legend>
          <input id="loving" type="checkbox"  type="checkbox" name="personality"></label> <label for="loving">Loving</label> <input id for="lazy" type="checkbox"  type="checkbox" name="Lazy"></label> <label for="Lazy">Lazy</label>
        </fieldset>
        <input type="text" name="catphotourl" placeholder="cat photo URL" required>
        <button type="submit">Submit</button>
      </form>
    </section>
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:103.0) Gecko/20100101 Firefox/103.0

Challenge: Learn HTML by Building a Cat Photo App - Step 57

Link to the challenge:

1 Like

hi there,
input elements are self-closing. No need to set a closing-tag after it. ( and surely no label closing-tag)( found two you do not need.) and you like setting types a lot, don’t you? ( found one double).
Happy coding!!

i appreciate the time that you have taken to response to me. but honestly i have no idea what you have said. i literally just took someone elses answer from this step. this is literally what i have done for every step im stuck on.

the thing that annoys me about this website is none of the moderators are helpful either. they just say the same stuff that you have, which leaves me even more confused and stuck.

youre talking about something that i havent even done. this step wasnt giving me an error due to input elements and there was nothing wrong with those.

actually i’ll never post to this forum again. ill never recommend this website because its so complex for a begineer. no wonder this forum is flooded with everyone asking for answers all the time. typical mods on a power trip and other users that are as clueless as me when it comes to this.

please have a fantastic day and all the best with your coding career :slight_smile:

1 Like

hi there,
the problem with giving answers in this forum is, we mustn’t .
It is only allowed to give hints and hope it is understood. If anyone answers in this forum directly with a solution, they ( some sort of )punish us .
The reason is , that these are challenges, in which everybody should find the solution on its own. So do not bother or feel misunderstood, it is another reason, why people act like this.

Hola!! el problema es que estas poniendo dentro del input en mayuscula, cuando dentro del input va en minuscula asi: name=“lazy”, recuerda siempre revisar eso! espero poder ayudarte.

Do not give up your way, best wishes and thanx for the clear words. :kissing: :smile:

1 Like

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.