Can't seem to get this one I tried but keep getting the same results

I tried lots of variations but no success

  **Your code so far**
<html>
<body>
  <h1>CatPhotoApp</h1>
  <main>
    <section>
      <h2>Cat Photos</h2>
      <!-- TODO: Add link to cat photos -->
      <p>Click here to view more <a target="_blank" href="https://freecatphotoapp.com">cat photos</a>.</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>
        <form action="/submit-https://freecatphotoapp.com/submit-cat-photo"> 
        </form>
    </section>
  </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/103.0.5060.53 Safari/537.36

Challenge: Step 35

Link to the challenge:

@ The challenge needs you to add a form attribute value “Thank You message for Cat Photo App form submission| freeCodeCamp.org” to your form that’s all!!!

This is not the URL you were asked to add. Use copy/paste if possible to make sure you get it exactly right.


Still doesn’t work, thanks for responding

You should add the action attribute to the existing form element, not create a new form element.

I don’t know what I am doing wrong

I am so sorry but what exactly does that mean?

Did you see that there was already a <form> tag in the HTML? You didn’t need to add a second one. Put the action attribute on the one that was already there.

Sorry for lacking here

@sinanan9 Now let me break it down for you…The challenge needs you to add an action attribute to the existing form element…You’d have something like this, add your action attribute to where I have “attribute”…If you have it done like the example i gave you below, you’d get it right…

<form action="attribute"></form>


Sorry maybe I am overthinking this

The text in the quotes must be the exact value (URL) given in the instructions.


Wow thank you guys for your kindness it worked now I got to go back and study this result. Thanks again!!!

@sinanan9 Keep working, keep pushing and give it your all…Happy coding!!!

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.