Hi All,
I’ve absolutely tried everything, but I keep getting the following error “You have either omitted the URL or have a typo.”
Any advice on my code below ?
CatPhotoApp
Cat Photos
Click here to view more cat photos

Hi All,
I’ve absolutely tried everything, but I keep getting the following error “You have either omitted the URL or have a typo.”
Any advice on my code below ?
Click here to view more cat photos
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<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 herf="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>
Add a dot after “cat photos”, between the closing ‘a’ and ‘p’ tag.
You have a typo right here.
Whoops noted. Thanks, but I still get the same error
<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."></img></a>
You added a typo at the end of the url here.
Solved!! Thank you so so much
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.