I'm stuck at the form section

I’m stuck at the form section. I’ve nested the input element into form but it’s not working. Please let me know where I’m making a mistake. 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://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:**

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

Challenge: Create a Form Element

Link to the challenge:

Hi how are you?
You are missing the form label, the one shown in the example.

<form action="/url-where-you-want-to-submit-form-data">
  <input>
</form>

Sorry I got confused when opening the exercise link

The problem is that the input comes with a default placeholder, and you altered the string and added uppercase. Then the automatic tests fail. The parts of the code that do not need to be modified should not be modified to avoid errors.

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