Kuburah
November 28, 2022, 2:52pm
1
Tell us what’s happening:
I don’t understand step 12, need help please
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p> <a href="https://Click here to view more cat photos">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 28, 2022, 2:53pm
2
hi there, welcome to the forum.
Please click the reset button (it looks like an arrow turning) and this will return the code back to its initial state.
After that, please read the guide post I made here to see if it helps you move forward
Many people struggle with making an html link for the first time when that link is enclosed within a paragraph element. (Such as in step 12 of the cat photo app).
This post is meant to guide you by giving you some tips of how this is done.
To begin, we are presented with some plain text in a paragraph element such as below:
<p>This is some boring text without any links.</p>
And let us now try to turn the word -links- into a clickable link by using an anchor element.
Here goes:
<p>This is s…
system
Closed
May 30, 2023, 4:12am
4
This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.