Hi, I’m having trouble with step 53 in the HTML course.
I should add a label around the Loving text, which I did, but It’s not taking my input correctly.
I have runned the assignment and my code trough ChatGPT, and it’s said that it can’t find any errors.
Here is my code and thanks
<main>
<h1>CatPhotoApp</h1>
<section>
<h2>Cat Photos</h2>
<!-- Add link to cat photos -->
<p>
See more
<a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in
our gallery.
</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
type="radio"
id="indoor"
name="indoor-outdoor"
value="indoor"
/>
Indoor
</label>
<label
><input
type="radio"
id="outdoor"
name="indoor-outdoor"
value="outdoor"
/>
Outdoor</label
>
</fieldset>
<fieldset>
<legend>What's your cat's personality?</legend>
<input id="loving" type="checkbox">
<label for="loving">Loving</label>
</fieldset>
<input
type="text"
name="catphotourl"
placeholder="cat photo URL"
required
/>
</form>
<button type="submit">Submit</button>
</section>
</main>