I need Help this Catphoto url isn't working with me

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://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>
</main>
<form action="/submit-cat-photo"> <input type="text" placeholder="cat photo URL" /> </form>

  **Your browser information:**

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

Challenge: Create a Form Element

Link to the challenge:

Hi @Medan !

This part is incorrect

Reread the directions carefully for the correct url address

Directions:
and assign "https://www.freecatphotoapp.com/submit-cat-photo" to the action attribute of the form element.

I try this way but it doesn’t work with me .

Can you show us your new code so we know where the issue is?

When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

<form action="/submit-cat-photo"> <input type="text" placeholder="cat photo URL" /> </form>

this above code is my new code

This is still wrong.

You need to use the correct url address.

Here it is again

It is also possible that you are getting confused by the example they gave you

<form action="/url-where-you-want-to-submit-form-data">

Maybe that is why you are writing this

but you need to use the full url address they gave you in order to pass the test

"https://www.freecatphotoapp.com/submit-cat-photo"

The correct answer is a lot longer than the one you are currently using.

Hope that clears it up!

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