Plz can you help me to solve this?

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 = "/url-<form action="/submit-cat-photo"><input type="text"  placeholder="cat photo URL">
" </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 action=" /submit-cat-photo"> </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:

bro i think you have edited the original data as there is a input element in the challenge in fcc challenge. you just have to nest that existing input element in the form like this;

<form action="">
<input>
</form>

Hope this helps.

bro he said like that Your

form

should have an

action

attribute which is set to

https://freecatphotoapp.com/submit-cat-photo
```  idk i try all the ways but its still didnt work

yes that’s right fill this given link in the action

<form action ="https:......">

like this

you have placed the form element the wrong way, It should be like this;

<form action="the link given in the challenge as it is">
<input>
</form>