Tell us what’s happening:
The hints keep saying to “You should create an input element for your radio button. Check the syntax.” but I have that. i followed the example and tried to replicate what they had.
**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">
Indoor: <input type="radio"> Indoor 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 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/105.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 43
The top line is the example.
The bottom one is your code.
I believe the confusion is because you thought the word cat: was part of the syntax, but it isn’t. All html elements start with angled bracket <. So cat: cannot be a valid html element.
knowing this, can you compare the example again to your code and redo it?
Remember how I said that valid html elements begin with < and end with >
Look at your code and count the number of < and >
There should be exactly one < at the start and one > at the end of the element.
Then the word Indoor should be after this.
Just like the cat example:
<input type="radio"> cat
Only one < at the beginning of the tag, and one > at the end.
Followed by the word cat
(Yours should be the same, only one < and one > followed by the word Indoor)