Nesting form element in already input

**Tell us what’s happening:**pls I’m I need help I’m stuck in the jesting part. Ive been on this past four days still ain’t get it. Pls I need help

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 input type="text"action="/submit-cat-photo">< type="text"></form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 12_4_7 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.1.2 Mobile/15E148 Safari/604.1.

Challenge: Create a Form Element

Link to the challenge:

hey @Kolawoledavid,

your form should look like this

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

then you have to put your input inside the from

Please follow the instruction carefully.
It is said there that you need to wrap(nest) input element inside form tag. Also you should keep in mind about different attribute that is supported by different HTML tag. You cannot use type or input attribute with form element.

Your code should looks like this:
`

<form action="/url-where-you-want-to-submit-form-data">
 <input type="text" placeholder="cat photo URL">
</form>

`