Tell us what’s happening:
Describe your issue in detail here.
Its not working. And im getting fustrated with all the tries and different ways im trying to succeed. Does any one know what im doing wrong. I promise when i type it out correctly. The link is not highlighting. PLEASE HELP.
Your code so far
<html>
<body>
<main>
<h1>CatPhotoApp</h1>
<section>
<h2>Cat Photos</h2>
<!-- TODO: Add link to cat photos -->
<p>See more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a> in our gallery.</p>
<a href="https://freecatphotoapp.com"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" alt="A cute orange cat lying on its back."></a>
</section>
<section>
<h2>Cat Lists</h2>
<h3>Things cats love:</h3>
<ul>
<li>cat nip</li>
<li>laser pointers</li>
<li>lasagna</li>
</ul>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/lasagna.jpg" alt="A slice of lasagna on a plate.">
<figcaption>Cats <em>love</em> lasagna.</figcaption>
</figure>
<h3>Top 3 things cats hate:</h3>
<ol>
<li>flea treatment</li>
<li>thunder</li>
<li>other cats</li>
</ol>
<figure>
<img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/cats.jpg" alt="Five cats looking around a field.">
<figcaption>Cats <strong>hate</strong> other cats.</figcaption>
</figure>
</section>
<section>
<h2>Cat Form</h2>
<form action="https://freecatphotoapp.com/submit-cat-photo">
<fieldset>
<legend>Is your cat an indoor or outdoor cat?</legend>
<label><input id="indoor" type="radio" name="indoor-outdoor" value="indoor" checked> Indoor</label>
<label><input id="outdoor" type="radio" name="indoor-outdoor" value="outdoor"> Outdoor</label>
</fieldset>
<fieldset>
<legend>What's your cat's personality?</legend>
<input id="loving" type="checkbox" name="personality" value="loving" checked> <label for="loving">Loving</label>
<input id="lazy" type="checkbox" name="personality" value="lazy"> <label for="lazy">Lazy</label>
<input id="energetic" type="checkbox" name="personality" value="energetic"> <label for="energetic">Energetic</label>
</fieldset>
<input type="text" name="catphotourl" placeholder="cat photo URL" required>
<button type="submit">Submit</button>
</form>
</section>
</main>
<footer>
<p>No Copyright - <a href="https://www.freecodecamp.org" alt="freeCodeCamp.org"> </a> </p>
</footer>
</body>
</html>
Your mobile information:
SM-G996U - Android 14 - Android SDK 34
Challenge: Learn HTML by Building a Cat Photo App - Step 64
You appear to have created this post without editing the template. Please edit your post to Tell us what’s happening in your own words.
Learning to describe problems is hard, but it is an important part of learning how to code.
Also, the more you say, the more we can help!
try clicking Reset to restore the original code which should look as follows in the editor: <p>No Copyright - freeCodeCamp.org</p>
You now need to add the anchor tags to it.
Start by adding the opening anchor tag to the immediate left of the word freeCodeCamp.org.
Then add the closing anchor of the anchor tag to the immediate right of the freeCodeCamp.org text.
The end result will make the word become clickable if done correctly.
Can you try reading my previous message again please?
You are not supposed to modify the text at all. You just need to add a valid anchor opening tag to the immediate left of the word freecodecamp.org without modifying it. And add the anchor closing tag to the immediate right of the same word.
Please reset and try again.
A valid opening anchor tag is one that looks similar to below: <a href="link-here">
I attempted this method and it gave me the error of not including the [https://www.] to the link (freeCodeCamp.org)
I do understand you, but I am not editing the text I am just adding text… If that makes sense, smh , ill admit i dont know what i doing at this point. what i dont understand is that, I keep getting errors and its not passing.
Please believe me, I Feel like I have tried Everything.
please follow the steps below carefully.
1- click the Reset button
2- look at the editor and notice the following code is there: <p>No Copyright - freeCodeCamp.org</p>
There are 3 words here.
3- put your mouse on the immediate left of the 3rd word (freeCodeCamp.org)
4- write the anchor opening tag in this location
5- put your mouse on the immediate right of the 3rd word (freeCodeCamp.org)
6- write the anchor closing tag in this location
Here is example code showing how to write an anchor <a href="url">words in the middle</a>
the words that go in the middle of the opening and closing anchor tag in this step will be exactly one word which is the 3rd word in the paragraph when you click Reset (if you follow my steps exactly)
I still don’t understand… I am following your rules slowly and step by step. I am understanding what your explain, but i am still get the ‘Hang in there’ error messages.
error message:
" Sorry, your code does not pass. Hang in there.
Your anchor (a) element should be nested within the p element inside the footer. Make sure to add an opening tag and closing tag for the anchor (a) element."
Now this is my last input:
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.
Your solution works from my end. Please try one of the following steps to move forward.
Click on the “Restart Step” button and force a refresh of your page with CTRL + F5 then try to paste the code in again.
or - Try the step in incognito or private mode.
or - Disable any/all extensions that interface with the freeCodeCamp website (such as Dark Mode, Ad Blockers, or Spellcheckers), and set your browser zoom level to 100%. Both of these factors can cause tests to fail erroneously.
or - Ensure your browser is up-to-date or try a different browser.