Form element: pretty sure this code is correct?

I’m pretty sure this code is correct, I checked the hints and people’s comments: tried to see if the problem was the browser, nothing changed.

Can someone help meeee? thanks!

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

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_13_1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36.

Challenge: Create a Form Element

Link to the challenge:

Hi @barbarazeviche!

Your url in the action attribute is different then what was provided for you

1 Like

Just in case this isn’t clear, you need to use the full URL for the test to pass.

"https://freecatphotoapp.com/submit-cat-photo"

I already tried to type in the full URL, it didnt work either! :S

I see an extra set of quotes that should not be there in the url.

You wrote this.

""https://freecatphotoapp.com/submit-cat-photo""

Delete the outer quotes or check @lasjorg’s answer again.

Hope that helps!

1 Like