What am I doing wrong? HTML Form Element

image

I’m at the form element portion of the HTML lesson, and I can’t seem to find my mistake here. I’ve already googled to see if anyone had had this problem before, but the only result was someone not knowing how to nestle the elements. Thanks in advance.

Full code and context:


<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>

<form action="https://freecatphotoapp.com/submit-cat-photo"> 
<input type="text" placeholder="Cat photo URL"> 
</form> 

</main>

Challenge: Create a Form Element

Link to the challenge:

 <form action="https://freecatphotoapp.com/submit-cat-photo">
  <input type="text" placeholder="cat photo URL">
  </form>

The cat should start with a small letter

oh my god…

Thank you.

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