I am stuck,.. i need help

Tell us what’s happening:
Describe your issue in detail here. can you please give me an hint, cos i am stuck here and all my effort is not successful… thanks

  **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://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>
<form action= input type="text" name= "https://www.freecatphotoapp.com/submit-cat-photo">
</form>



</main>
  **Your browser information:**

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

Challenge: Create a Form Element

Link to the challenge:

Hello @ajayiolaoluwa8

Please look at the instructions carefully. The task requires you to create a from just like the example shown in the instructions, with the existing input element inside the form.

Go through the instruction once more. I’m pretty sure you will crack it.

i have done it over and over again but it is not going …

You are doing it a bit wrong. Can you see the example form in the instructions? Please look at that example provided in the instructions.

You should create the form exactly that way, with the existing input in between the opening and closing form tags.

This is what i kept getting

You should have a form with the input nested within it:

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

Just like the example given in the instructions.

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