Trying to add a placeholder attribute to "cat photot URL"?

Tell us what’s happening: wTf am i doing wrong with the placeholder text? help!!!

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="cat photo URL">
</main>

**Challenge:** Add Placeholder Text to a Text Field

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/add-placeholder-text-to-a-text-field

Are you supposed to have two input elements or one?

As ArielLeslie mentioned, you’re only supposed to edit the given input element

that worked… Thanks a lot, was stuck throughout yesterday lol

I’m glad I could help. Happy coding!