<form action”blablabla”input form

Hitting roadblocks but advancing . I met two of the requirements on this. It’s asking me to nest with in an element.

  **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="https://www.freecatphotoapp.com/submit-cat-photo">
<input>
</form>
<\doem>type="text" placeholder="cat photo URL">
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/210.0.444145502 Mobile/15E148 Safari/604.1

Challenge: Create a Form Element

Link to the challenge:

HI @gily34 !

It looks like you accidently changed the existing input when you were not supposed to.

This is incorrect

This is the correct input the lesson started with

  <input type="text" placeholder="cat photo URL">

It might be easier to reset the lesson.
make sure to wrap your form tags around the existing input instead of altering or creating any new ones.

You should only be adding two lines of code for the opening and closing form tags to pass this lesson.

Hope that helps!

Passed two of the requirements. Can anyone give me feed back ? Thanks in advance.

  **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="https://www.freecatphotoapp.com/submit-cat-photo">
<input>
</form>
<\doem>type="text" placeholder="cat photo URL">
</main>
  **Your browser information:**

User Agent is: Mozilla/5.0 (iPhone; CPU iPhone OS 15_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) GSA/210.0.444145502 Mobile/15E148 Safari/604.1

Challenge: Create a Form Element

Link to the challenge:

You still have the same issues are earlier.

This needs to be deleted

and this is not the correct input

Here is the correct one that needs to be inside the form tags.

Make sense?

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