No code works plz help

Hello, My code on this exercise doesn´t work and the codes already posted here work neither. Does anybody have another solution here?
Thank you so far :slight_smile:

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 cats hate:</p>
<ol>
  <li>flea treatment</li>
  <li>thunder</li>
  <li>other cats</li>
</ol>
<form action="/https://freecatphotoapp.com/submit-cat-photo">
<input type="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.

Challenge: Create a Form Element

Link to the challenge:

the link is wrong
"/https://freecatphotoapp.com/submit-cat-photo
it should not contain / at the start. the link is
https://freecatphotoapp.com/submit-cat-photo

Hi @Vanessa80!

Welcome to the forum!

You have also changed the input. Try resetting the lesson and do not change the input and use the exact url address.

Hope that helps!

Hello @Vanessa80,

As @jwilkins.oboe noted, you can reset the code which will help.

But I will add a note of what went wrong.

The text in “action” and “placeholder” has been modified. So couldn’t pass the challenge.

I copied your code and made the above modifications and passed the challenge.

Thank you.