Can't seem to to get "the nest the text input within form element " right. Please help

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

Your browser information:

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

Challenge: Create a Form Element

Link to the challenge:

Hello there.

Start from the example:

<form action="/url-where-you-want-to-submit-form-data"></form>

Now, what it means to nest an element inside another element:

<parentElement attributeName="value">
  <nestedElement></nestedElement>
</parentElement>

Lastly,

Nest your text field inside a form element, and add the action="/submit-cat-photo" attribute to the form element.

Hope this helps