Cat photo Html (src attribute)

Tell us what’s happening:
I am doing the HTML By Building Cat Photo App and can not get passed the step in which I am suppose to add a SRC attribute

Describe your issue in detail here.
Currently I have tried the code
https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg
which is wrong according to the curriculum. I have also tried different combinations. What am I not doing correctly? In addition I am just starting out and learning that coding is just to give you guys some background knowledge about me.

  **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>
    <src>"https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg"
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/15.5 Safari/605.1.15

Challenge: Step 8

Link to the challenge:

If you look at the example in step 8, it shows an img element with a src attribute with the value https://www.your-image-source.com/your-image.jpg. You just need to do something similar with the existing img element on line 8. You may need to restart the step to bring the code back to the original starting code.

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.