Learn HTML by Building a Cat Photo App - Step 14

Tell us what’s happening:
Good Morning,
I am on Lesson 14 of the freedCodeCamp in the (New) Responsive Web Design course. I cannot correct my error.

Here is my hit.
Your anchor (a ) element should have an opening tag. Opening tags have this syntax: <elementName>

I am unable to figure out where I would put the the opening tag I have tried several iterations of where to put it before this. have searched the forum and can not find anything that helps. My code without the works as it is supposed to at this time.

test

Can you please tell me what I am doing wrong.

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main> 
    <h2>Cat Photos</h2>
    <!-- TODO: Add link to cat photos -->
  <elementName>
    <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</p>
  </elementName>
  
    <img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back.">
   
  </main>
</body>
</html>
  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/103.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 14

Link to the challenge:

elementName is generic example

You should put name of the lement that actually exists instead of elementName
It could be

<a>
<form>
<legend>

or any element which you need

well, you should wrap image into link

so opening tag goes before it, closing tag goes after.

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