I have problem creating opening and closing tag of the form element

Tell us what’s happening:
Describe your issue in detail here.

  **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 nipn</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"
</form>
<input type="text" placeholder="cat photo URL">

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

User Agent is: Mozilla/5.0 (Linux; Android 10; SM-A013G) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.105 Mobile Safari/537.36.

Challenge: Create a Form Element

Link to the challenge:

You forgot to close this using > at the end

You should nest this inside you form element

Hope This Helps

Instruction number 1 has a problem also

Hmm… What Do you mean?

Your

form

element should have well-formed open and close tags

Yes you forgot to close this one

You should place > at the end of this line

The existing

input

element should be nested within a

form

element.

You should nest it inside the form element

Eg for nesting:

<form action="https://freecatphotoapp.com/submit-cat-photo">

Input tag goes here..

</form>

thank your for that I have spent the last hour trying to figure out what I was doing wrong.

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