Help with Step 35

Step 35
The action attribute indicates where form data should be sent. For example, tells the browser that the form data should be sent to the path /submit-url.

Add an action attribute with the value Thank You message for Cat Photo App form submission| freeCodeCamp.org to the form element.

    <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>

Test
Sorry, your code does not pass. Hang in there.

Hint
Your form element does not have an action attribute. Check that there is a space after the opening tag’s name and/or there are spaces before all attribute names.

1 Like

Hi @TonyMac

Try to post the link to that step as well. It takes time help and that makes it easier.
Any way, it seems you need to add an action attribute and you did but… read your code carefully. No rush.
something here /element>, this would create an HTML element between an open and close tags. If you open again that element inside this tags you will have two elements, one nested inside the other, or your code just will fail.
You can read more about the syntax necessary to solve this step in the link bellow, but read your code carefully too, and check for other elements syntax as well. It is important to understand some basic concepts.

I hope that helps you and happy coding!

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