Please help me i dont know what to do

i can not get past action attribute

  **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://www.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 (X11; CrOS x86_64 13816.82.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.218 Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

You’ve got some issues with the URL you are using for the action attribute in the form. You’ve got a hidden space character in there. Also, why do you have / at the beginning before the https?

If you are able to copy/paste I would recommend you copy/paste the URL from the instructions into your solution and that way you will get the exact URL required to pass the test.

1 Like

thank you so much i copy and pasted it you are right

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.