<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">
<label><input value="indoor" type="radio" name="indoor-outdoor"> Indoor</label>
<label><input value="outdoor" type="radio" name="indoor-outdoor"> Outdoor</label><br>
<label><input value="loving" type="checkbox" name="Personality," > loving</label>
<label><input value="lazy" type="checkbox" name="personality" > lazy</label>
<label><input value="energetic" type="checkbox" name="personality" > energetic</label><br>
<input type="text" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</form>
what help do you need?
The only thing I see wrong with this code is that you have your <img tag wrapped in an <a tag, which is unnecessary. I don’t recall the course asking for it to become a link when clicked.
Hope that helps… if that is your issue at the moment…