I need help, I spent hours trying to solve

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>
<form action="/https://www.freecatphotoapp.com/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/98.0.4758.102 Safari/537.36

Challenge: Create a Form Element

Link to the challenge:

1 Like

Your URL is incorrect. It has a “/” at the beginning and a “.” at the end of it. Try removing both.

1 Like

You are not the first to do that, in fact, it is pretty common. I think we should remove the root-relative path / in the example given.

Example code:

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

Should be this instead:

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

Edit: @Officialmuhdabdul just so I know, can you tell me if you added that slash / because of the example code?

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