What's wrong in the code

is there any wrong i did in this challenge?

   **Your code so far**

<h2>CatPhotoApp</h2>
<main>
 <p>Click here to view more <a href="#">cat photos</a>.</p>
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
  <input>
</form>
 <a href="#"><img src="https://cdn.freecodecamp.org/curriculum/cat-photo-app/relaxing-cat.jpg" 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" placeholder="cat photo URL">
</main>
   **Your browser information:**

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

Challenge: Create a Form Element

Link to the challenge:

  1. List item

The challenge says:

The existing input element should be nested within a form element.

It looks like you put a different input element inside the form.

1 Like

huh? wdym? iā€™m stuck here for 1h

Put the input tag inside the form tag.
Inshort the <input type="text" placeholder="cat photo URL"> should be wrapped inside the <form> </form>

Refer to HTML Forms if you are stil stuck.
Cheers

2 Likes

Hi @hades21hkinghelpme !

I would reset the lesson.

As the others have mentioned, you need to nest the existing input inside the form tags.

Not create a new one.

 </ol>
WRITE YOUR CODE HERE
 <input type="text" placeholder="cat photo URL">
</main>
1 Like

thanks for ur help hheheh :blush:

thankssss forrrrrr ur helppp :blush:

1 Like

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