Learn HTML by Building a Cat Photo App - Step 64

Tell us what’s happening:
here I am again for the 100th time today. I am beyond stuck and yes i looked back into what i had done and still cant get it straight.

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>

<!-- User Editable Region -->

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

<!-- User Editable Region -->

    </footer>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36

Challenge: Learn HTML by Building a Cat Photo App - Step 64

Link to the challenge:

 <footer> <p><a href="https://www.freecodecamp.org" text="freecodecamp.org"</a> </p>
     </footer>

if i did it right thats where i am

1 Like

everytime i share in this box i loose everything and have to start over.

This is the original code:

      <p>No Copyright - freeCodeCamp.org</p>

You need an opening a tag and a closing a around the text freeCodeCamp.org. It would look similar to how you put a tags around the text cat photos here:

     <p><a href="https://www.freeCodeCamp.org" text="freeCodeCamp.org"</a></p>

I dont know how many more times.

 <p><a href="https://www.freeCodeCamp.org" text="freeCodeCamp.org" </a> </p>

I have capitalized 60 different ways. changed order, changed words, changed all of it along with resetting multiples times

tried using the word link. tried reversing order. tried lower case and all upper case, tried different punctuation. only thing i cant do is flip letter upside down.

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

You should only add an opening and closing a tag to the original code given. Do not create a text attribute`

 <p><a href="https://www.freeCodeCamp.org" linktext="freeCodeCamp.org"</a>
     
      </p>

Like that? I will just keep sharing until i get

    <p><a> href="https://www.freeCodeCamp.org" linktext="freeCodeCamp.org"</a> </p>

There is no attribute called linktext. Do not add a text or linktext attribute.

Check other places you have used the anchor tag and see how you did it.
Example👇

now the whole line is black not all colors

Thank you for your assistance but please read the very post. I have looked all over in the code. Thank you for your assistance tho. I can only handle one answer right now, but thank you

the a is red in between </>

took the a out still nothing. Might as well reset for the 30th time again

now the p is red. I have no clue. I really do appreciate your help, I know you are on the other side going…what in the world.

<p> <a href="https://www.freeCodeCamp.org"</a> text="https://www.freeCodeCamp.org" </p>
    <a>  <p> <a href="https://www.freeCodeCamp.org"</a> text="https://www.freeCodeCamp.org"></p></a>

No clue I have now reset for probably 35 times on this one.