HTML Input Elements and form action

I can`t seem to pass this challenge of input type text
The existing

input

element should be nested within a

form

element…

  **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://www.freecatphotoapp.com/submit-cat-photo">
  <input type="text" placeholder= "cat photo url">
</form>

</main>
  **Your browser information:**

Challenge: Create a Form Element

Link to the challenge:

Only issue may be that you need to capitalise the URL part of placeholder as that is how it was originally written

Yes, I agree with @Jaydog, I checked that scenario and it is working fine.

Ok dear… thanks I will try it out!!!

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