Tell us what’s happening:
Describe your issue in detail here.
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<!-- User Editable Region -->
<p>See more <a href="https://freecatphotoapp.com" </a> (cat photos) in our gallery.</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<!-- User Editable Region -->
<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; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 12
The opening anchor is missing its > angle bracket at the end of it. And the closing anchor tag should be on the other side of the text being turned into a link cat photos.
There should not be any parenthesis around the words cat photos.
It is important to make sure the closing > from the opening anchor, and the < from the closing anchor touch the text cat photos. Leave a space after the closing anchor tag.
In this step, you need to turn the words cat photos in a text link.
Several things:
1.- You don´t put the closing bracket in the a element.
2.- You don´t need to modificate the original sentence.
3.- The text link, should be between te opening tag and the closing tag of a element.
I give you an example:
Imagine that you have this sentence: Click here to view Paris and you want to turn the word here in a text link with the href: https://www.somelink.com
The code will be like this: Click <a href="https://www.somelink.com">here</a> to view Paris