You should set the value of your placeholder attribute to cat photo URL

help please can fix thid
You should set the value of your placeholder attribute to cat photo URL .

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>
<input type="text">
<input type="text" placeholder="freecatphotoapp.com">
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.3; Win64; x64; rv:80.0) Gecko/20100101 Firefox/80.0.

Challenge: Add Placeholder Text to a Text Field

Link to the challenge:

notice the input tag directly under your ordered list. The challenge is asking you to add a placeholder attribute to the tag with the text “cat photo URL”, before or after the type attribute.

The end result should be a text box with the phrase “cat photo URL” in it, that will be erased when text is typed into the text-box.

<input type="text" placeholder="freecatphotoapp.com">

You need to replace the current placeholder value (freecatphotoapp.com) with cat photo URL

you only need one input element, delete this:

<input type="text">