I dont know what should i do for this one

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


  <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" placeholder="cat photo URL">
</form>
<main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/68.0.3440.106 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-form-element/

You don’t need any form tag here at top.

And this form tag should have the action attribute.
Does this help?

The exercise is asking you to create a form element and place an input field inside of it, like this:

<form>
<input type="text" placeholder="cat photo URL">
</form>

The form action will take you to the link you specified, as soon as you click a submit button.

Here’s a complete example, copy and paste it into your editor to see the result:

<form action="https://bit.ly/fcc-relaxing-cat">
<input type="text" placeholder="cat photo URL">
<input type="submit" value="submit">
</form>