Thanks for your concern , this is my current stage

Tell us what’s happening:

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>
</form>

Your browser information:

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

Challenge: Create a Form Element

Link to the challenge:

You have the right idea, but there was an existing input in the code - you need to use that. Reset the code and try again. When I fix that, the code passes for me.

Greetings

I have done that but is not still working (

), pls can you help me to arrange it so that i can learn from what you did .

Could you please cut and paste what you have?

Above you have:

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

This is the right idea, but you’ve created your own, empty input. This was what was in there before:

<input type="text" placeholder="cat photo URL">

They wanted you to nest that input, not delete that and create a new one.

Thanks so much for your guidance , have done that and it worked , i so much appreciate for your concern

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