Learn HTML by Building a Cat Photo App - Step 36

Tell us what’s happening:

i am having trouble on step 36. i found some answers on here an tried it but nothing works. please help. complete beginner here.

this is my code:

  </section>
  <section>
    <h2>Cat Form</h2>
   <form>
<form action="https://freecatphotoapp.com/submit-cat-photo"></form action>
  </section>
</main>
```

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:123.0) Gecko/20100101 Firefox/123.0

Challenge Information:

Learn HTML by Building a Cat Photo App - Step 36

You don’t want to add another opening <form> tag. You want to use the one that is already there.

Also, the action attribute only goes on the opening tag. In fact, all attributes only go on the opening tag. You will never put one on a closing tag.

1 Like

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