Tell us what’s happening:
Describe your issue in detail here. it is showing problem when i using anchor tag in para in cat photos as link for my web can you help me what is the problem.
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<!-- User Editable Region -->
<p><a href="https://freecatphotoapp.com"</a>cat photos</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
Hello and welcome to the community !
Instead of deleting the paragraph you were provided with at the beginning of the step reset this step so that you’re back with the original paragraph. Then you have to turn the words ‘cat photos’ that are part of the paragraph into a link(kinda like a wiki link). To do that you have to place the text ‘cat photos’ BETWEEN the opening and closing a tags. You have to place your a tags in the actual paragraph without committing any change to the rest of the paragraph and they should be around the text ‘cat photos’. You should also have a > mark to close your opening a tag:
Should be look similar to this:
<p>This paragraph contains a <a href="">LINK</a> inside it</p>