Trouble with value of input

Tell us what’s happening:
I am putting the value as “cat photo URL”, but its not working

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">
</main>
<input type="text" placeholder="cat photo URL">

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/84.0.4147.105 Safari/537.36.

Challenge: Add Placeholder Text to a Text Field

Link to the challenge:

You didn’t add the placeholder to the existing element. You created a new element outside the main tag. You always have to carefully follow the directions.

Sorry got it. There was an open tag too. Thanks

Put your <input type="text" placeholder="cat photo URL"> inside your <main>...</main>. Always remember to put them inside of the closing door if you want them inside.