Tell us what’s happening:
Describe your issue in detail here.
**Your code so far**
<html>
<body>
<h1>CatPhotoApp</h1>
<main>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more cat photos.</p>
<img src="https://cdn.freecodecamp.org/curriculum/ cat-photo-app/relaxing-cat.jpg>
</img>
</main>
</body>
</html>
i’m stuck on part 8 of this cat App Idk if i’m missing the quotation marks in my string or what someone plz help
**Your browser information:**
User Agent is: Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/104.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 8
Link to the challenge:
To create an image you need an image tag with a src attribute. So your tag should be formed like this
<img src=“some-image-I-liked.jpg”>
Pay close attention to spelling of each word img and src and the location of the angled brackets.
3 Likes