Step 64 building a cat photo app

none of my forums are submitting but i am stuck on step 64 i have asked before about this step and nobody would explain it in a way i could understand i took a break from this site and im back trying but i am stuck on the same step as before and no matter what i try it doesnt work

Welcome back. Sorry you are still unable to progress.

Sometimes it helps to go back a few steps and get into a groove.
If you want, you can also click on the ‘Ask for help’ button so that you can create a post here which includes your last code and your question. Try to analyze what it is about the step or the hint that you’re not understanding so you can get better help.

all the best.

i have tried the get help button for some reason the three forums i posted were not uploaded but basically the course only showed me once how to anchor (a) but even if i do the same as i was shown before the lesson still says its wrong i also see almost everyone that asks about this also has the same issue and i have not found a single solution

if you’re not able to submit a question through the Ask for Help button, then you may want to switch browsers in case your current one is causing some interference.

In the meantime, please copy the code in full (from the very top to the very bottom line ) and post it in response here. You will need to add a line that looks like this above the code after you paste it:
```
and another line like it after
```

which is to help us read your code in a good format.
Make sure that these additional lines are 3 backtick characters ` (not ')

Also please copy the link from the URL field in the browser and place it in your post so we can easily reach the step you’re on and read its instructions.

<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 - freeCodeCamp.org <a target= "_blank" href= "https://www.freecodecamp.org">freeCodeCamp.org</a></p>

that did not work copy and paste just shows my progress not my code

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 (').

don’t forget to post a link to the step you’re on

also i dont know what key that would be im on a french keyboard and im english so the symbols are not the same

i understand. It is tricky on non-english keyboards with programming keys sometimes.
But since you are interested in learning to program, you will have to do some googling to figure out how to find special keys like backticks. (or switch your keyboard to english while coding).
It’s inconvenient but thousands of people do it every day.

I’ve looked at the step for you and I think I see your issue.

in your attempt you have the following code:

What this code does is it adds a link to the right-hand-side of the text No Copyright - freeCodeCamp.org
This step though does not need this new link to the right of the text.
Instead, it wants you to embed the text that is already there at the start of this step into the link -without- adding another freeCodeCamp.org wording.

So as an example of the meaning here.
If I give you this paragraph:
<p>Which word is a link</p>

And I say: please make the word link above into a clickable link. You should do this:
<p>Which word is a <a href="www.something.org">link</a></p>
not this:
<p>Which word is a link <a href="www.something.org">link</a></p>

let me know if this clarifies the step for you

<p>No Copyright - <a href= "freeCodeCamp.org">https://www.freecodecamp< </a> </p>

am i missing somthing i guess it wasnt as clear as i thought

It looks like you’re on the right track but have mixed up your value for the href and the original text that was there.

when you reset you will see:
<p>No Copyright - freeCodeCamp.org</p>

And you are asked to make the last word of that paragraph into a clickable word.
This means that the anchor opening tag should go on the immediate left of the freeCodeCamp.org and
the anchor closing tag should go on the immediate right of the freeCodeCamp.org

you should not modify the word, or add any extra spaces or characters

Keep going!

thank you so much i have finally figured it out

1 Like

Hello there, i am struggling with the same issues.

if you can’t find the help you need from reading similar posts here then open your own topic using the Help button

I have done what you state in the previous advise and still no change

click the help button and open your own topic please

And the preview shows i have achieved the task required of me. What can i do???