Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<h2>CatPhotoApp</h2>
<main>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
</main>
<img src="http://www.bit.ly/fcc-relaxing-cat.com/your-image.jpg" alt="FCC-relaxing-cat">
**Your browser information:**
User Agent is: Mozilla/5.0 (Linux; Android 10; SAMSUNG SM-A115F) AppleWebKit/537.36 (KHTML, like Gecko) SamsungBrowser/13.2 Chrome/83.0.4103.106 Mobile Safari/537.36.
This ones weird. You are so close, but your human logic is interfering. You added in the image correctly with the alt text as the test is expecting. However, the actual image url is not http://www.bit.ly/fcc-relaxing-cat.com/your-image.jpg, it’s actually https://www.bit.ly/fcc-relaxing-cat
Simply removing the trailing /your-image.jpg will not cause this challenge to pass. You are also missing a letter s trailing http. It should read https://www.bit.ly/fcc-relaxing-cat
With that said, if you read the actual parameters for this to pass you will see this: Within the existing main element, insert an img element before the existing p elements.
You have placed this image outside of the <main>, which is also after the existing <p> elements. This test will pass without making this change but it is important to note as many of the FCC assignments will fail if you aren’t in the habit of following them as closely as possible.
One final note is on the alternate text attribute property. You have fulfilled the requirement by including something as alt text, but ask yourself: Does this accurately describe this image? Remember, these alt attributes tell a screen reader what to say when it comes across this image. Your viewer is likely blind and cannot rely on their eyes so they rely on the developer (you) to accurately describe what they are seeing.
Below is a final solution if you still need help.
<h2>CatPhotoApp</h2>
<main>
<p>Kitty ipsum dolor sit amet, shed everywhere shed everywhere stretching attack your ankles chase the red dot, hairball run catnip eat the grass sniff.</p>
<p>Purr jump eat the grass rip the couch scratched sunbathe, shed everywhere rip the couch sleep in the sink fluffy fur catnip scratched.</p>
<img src="https://www.bit.ly/fcc-relaxing-cat" alt="A relaxing kitten with a playful friend about to pounce.">
</main>
@mnichols08, It is great that you solved the challenge, but instead of posting your full working solution, it is best to stay focused on answering the original poster’s question(s) and help guide them with hints and suggestions to solve their own issues with the challenge.
We are trying to cut back on the number of spoiler solutions found on the forum and instead focus on helping other campers with their questions and definitely not posting full working solutions.
You can post solutions that invite discussion (like asking how the solution works, or asking about certain parts of the solution). But please don’t just post your solution for the sake of sharing it.
If you post a full passing solution to a challenge and have questions about it, please surround it with [spoiler] and [/spoiler] tags on the line above and below your solution code.