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 -->
<p>See more <a herf ="_blank" herf <"https://freecatphotoapp.com"> cat photos</a> in our gallery.</p>
<!-- 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.">
<!-- User Editable Region -->
</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/108.0.0.0 Safari/537.36 Edg/108.0.1462.76
Challenge: Learn HTML by Building a Cat Photo App - Step 15
I’ve edited your code for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.
You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.
The value for the href attribute should be the link https://freecatphotoapp.com
The value for the target attribute should be _blank. (I did not see the target attribute)
The reasons for your problems are as follows,
href value has been replaced with _blank.
The way that you assigned the value to the second href is not correct.
The proper way is href = "https://someaddress..com".
Not href <https://mystupidaddress.com>.