Learn HTML by Building a Cat Photo App - Step 36

Tell us what’s happening:
Describe your issue in detail here
Good morning to you all
I don’t know what I’m getting wrong with the simple step 36. The website response is that I have no action tag when I clearly and I think correctly do I have been battling with that since 8pm last night. Without this big I should have attain a progress above 60% by now.
What the heaven should I do now.

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>

<!-- User Editable Region -->

        <form>
    <form action="https://freecatphotoapp.com/submit-cat-photo"></form>
        </form>

<!-- User Editable Region -->

      </section>
    </main>
  </body>
</html>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 10; TECNO KD7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/112.0.0.0 Mobile Safari/537.36

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

Link to the challenge:

Please do not create multiple post of the same question next time. You can explain your question on the reply section.

Why would you have double element of the form. Read the instruction carefully.
It also provide example for you.

<form action="/submit-url"></form>

I’m sorry about the multiple Post I never knew it was double. Maybe it’s from my device’s fault or something. Please where have I used the double elements? I can’t get it.
Should I not nest the solution in the form element?

You only need one form. The attribute goes inside the opening forms tag.

You can see more here

You have double form element in your steps. Which is not required. Look at the example , that is how you do it

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