Need help: Create a Form Element

I can’t seem to solve this. I’ve watched videos,

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 photos URL.">
</form>

</main>

Your browser information:

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

Challenge: Create a Form Element

Link to the challenge:

This one can be tricky! Try <form action="https://freecatphotoapp.com/submit-cat-photo"> <input type="text" placeholder="cat photo URL" /> </form>

1 Like

Hello @Nikki360PDX. I think your answer needs a little bit editing. Don’t post just the solution itself. Instead, make the user understand what this challenge is about, and give them a step by step process and hints. If you just give the code only, the user will not learn anything rather than copy pasting.
Thanks.

remove fullstop " . " from your placeholder and then try to do it.

1 Like