I think my answer is correct but it say my answer is not correct

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a href="#">cat photos</a>.</p>

<a href="#"><img src="https://bit.ly/fcc-relaxing-cat" alt="A cute orange cat lying on its back."></a>

<p>Things cats love:</p>
<ul>
  <li>cat nip</li>
  <li>laser pointers</li>
  <li>lasagna</li>
</ul>
<p>Top 3 things cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="https://freecatphotoapp.com/submit-cat-photo"><input type="text" placeholder="cat photo url">
</form>

Your browser information:

User Agent is: Mozilla/5.0 (Linux; Android 9; SM-A305F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/85.0.4183.101 Mobile Safari/537.36.

Challenge: Create a Form Element

Link to the challenge:

Your test is not passing because the code had main element. If you look at the code you are submitting, it doesn’t have <main> </main>

I edit it but still not work

There should be a closing tag for main. Add </main> at the end after </form>.
EDIT
And please take note of:
<input type="text" placeholder="cat photo URL">.

You are not supposed to modify anything else. Just enclose the input element inside form element with the required action attribute.

Tanx so much it pass