Can yoyu help me ? i got stuck how to add <form action >

Tell us what’s happening:

Your code so far


<h2>CatPhotoApp</h2>
<main>
<p>Click here to view more <a 

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

Your browser information:

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

Challenge: Create a Form Element

Link to the challenge:

Hi @zikrazizo ,
welcome to the freeCodeCamp forum!

You kinda merged the <input> and the <form> tag. As an analogous example:

This link tag is nested within a div:

<div>
  <a></a>
</div>

Hi @zikrazizo ,

  1. Your form element is not closed by < / form > .

should be nested in form element such as ;
< form >
< input >
< / form >

Have good coding .