Can someone tell how i need to do that,cuz i cant someone to give me the forrm

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://www.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>

<unput"type="text" placeholder="cat photo URL"></main>


  **Your browser information:**

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36 OPR/76.0.4017.208

Challenge: Create a Form Element

Link to the challenge:

Hey @ZerohTw0, Welcome to freeCodeCamp’s forum :yum:

You can see this input element already provided for you in the code.

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

Now, nest this existing input element inside a form element and assign "https://www.freecatphotoapp.com/submit-cat-photo" to the action attribute of the form element.

For example:

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

Note: I can see that you have changed some of the code that you are not supposed to change. So, you can use the ‘Reset All Code’ to have a fresh start of this challenge again :wink:

Ya I agree… I would have to look back at mine, but I don’t remember the “#” in mine
Be sure to use the get hint or get help options. Usually gives an example. They are very helpful when stuck

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