**Tell us what’s happening:**Can’t figure out what I have wrong here.
Describe your issue in detail here.
Your code so far
<p>Click here to view more<a href="https://freecatphotoapp.com"</a> cat photos.</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>Click here to view more<a href="https://freecatphotoapp.com"</a> cat photos.</p>
<a href="https://freecatphotoapp.com">link to cat pictures</a>
<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:
hbar1st
November 21, 2022, 5:29pm
2
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.
See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (').
1 Like
hbar1st
November 21, 2022, 5:32pm
3
Here is a list of things you should fix
add a space after the word more
add a > after the href value (to the right of the second double quote)
move the </a>
anchor closing tag to the right of the word photos (but to the left of the period)
remove any extra space to the left of the word cat
Oh WOw!! Thankyou so much for correcting my syntax. I really needed this lesson in proper spacing and tag placement. Greatly appreciated.
Can’t find the backtick key
hbar1st
November 21, 2022, 6:02pm
6
1 Like
system
Closed
May 24, 2023, 4:15am
8
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.