Having an action attribute

Tell us what’s happening:
So I keep trying to do what is says but it is not letting me pass the test. It says Your form should have an action attribute which is set to https://freecatphotoapp.com/submit-cat-photo.

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 cat hate :</p>
</ol>
<li>bears</li>
<li>being trapped in the garbage can</li>
<li>black olives</li>
</ol>
<form>
<form action="https:llfreecatphotoapp.com/submit-cat-photo">

<input type="text" 
placeholer="cat"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.183 Safari/537.36 Edg/86.0.622.63.

Challenge: Create a Form Element

Link to the challenge:

you have ll instead of //

and you have two opening form tags

you have also changed the existing input element - that will also make the tests fail

The action attribute in your code is not the same as what you put above it.

<form action="https:llfreecatphotoapp.com/submit-cat-photo">

vs

Your input element also has errors. Can you find them?

Remember to go slow and carefully. Fast doesn’t get you anywhere.

Thank you very much for noticing those details I finally got it.

Good work debugging! Happy coding.