Nesting input element into a form elelment challenge

Form element

I am on the form element. I am supposed to nest the existing input element into the form element. I have done everything I can, when I run the test, it says the input element needs to be nested within the form element. I don’t know what else to do. I need help.
I am stuck there

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>

</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36.

Challenge: Create a Form Element

Link to the challenge:

Hi
Your code is:

type"text"

And that should be:

type="text"

And there should be no “/”(closing tag) because the input element is a self closing element
So your form’s code should look like this

<form action="https://freecatphotoapp.com/submit-cat-photo">
  <input type="text" placeholder="cat photo URL">
  </form>

It is because you are missing the = on the type attribute value.

You have:

type"text"

Should be:

type="text"

Thank you. This was quite helpful.