Tell us what’s happening:
Describe your issue in detail here.
Your code so far i dont understand what to do
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p><a href="https://freecatphotoapp.com">cat photos<a/></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:
User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/107.0.0.0 Safari/537.36
Challenge: Learn HTML by Building a Cat Photo App - Step 12
Link to the challenge:
hbar1st
November 2, 2022, 11:23pm
2
hi there,
please reset the code because I see you have deleted part of the paragraph element that you need.
Once you’ve done that, please look at the preview pane and notice this text
Click here to view more cat photos.
They want you to change the last 2 words (without touching the others) to make them into a link. So the preview pane should display them like this
Click here to view more cat photos .
Notice that the blue color means it is a link.
Also notice that the period dot is not part of the link.
Make sure your link has the proper tags (in your first try above you used <a/>
which is not a correct syntax for the closing tag. it should be </a>
instead)
system
Closed
May 4, 2023, 11:24am
3
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.