Form Element Rut

am stuck on the form element code. This is what I have 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>
  <input type="text" placeholder="cat photo URL">
  <form action="https://freecatphotoapp.com/submit-cat-photo"><input>
</form>
</main>

I have no idea what I am doing wrong. How do I nestle the existing input into the form element? I have tried to do that about 20 times and I am now really stuck. Could someone tell me the solution of what I need to change the text in Input to for it to be nexted in the form element please? I feel like I could be stuck here for days

A post was merged into an existing topic: Struggling on Form Element