Help will this work

Tell us what’s happening:
why wont this work

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

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 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" </form>
</main>

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0 Safari/605.1.15.

Challenge: Create a Form Element

Link to the challenge:

It looks like you have removed the provided input element. You need to wrap the provided input element in your new form element’s opening and closing tags.

This is what I’m doing and it’s wrong how do I fix it?

I do not see the preexisting input tag here.

What’s the pre existing input tag dude pretend your talking to come one who HAS NO CLUE THE LINGO OF CODING cause that’s me lol I’m entering as it’s telling me and it doesn’t work <form action=“the link”

The existing input tag is <input type=...>

You removed it. Resetting the code will restore it.

1 Like

Hi @benconners85!

When you reset the code you should see this at the end of the page.

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

Leave it there and don’t touch it.
Place the opening form tag on top of the input.
Make sure to add the > at the end or it won’t work.

<!--opening form tag with action goes here-->
 <input type="text" placeholder="cat photo URL">

Then add the closing tag after input

<!--opening form tag with action goes here-->
 <input type="text" placeholder="cat photo URL">
<!--closing form tag-->

Hope that helps!

1 Like

yea I was able to get it I erased the part I needed just needed to hit reset code and was able to get it I was stumped there for a good min not gonna lie. I’m really trying hard to learn this stuff I need a new career

1 Like