Creating a form element HTML

I can’t seem to get past the create form section and it’s frustrating me. None of the hints are working either. This is how my code looks

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

or 


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

  
</form>
</main>
```Help me




      **Your browser information:**

User Agent is: <code>Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/99.0.4844.51 Safari/537.36</code>

**Challenge:**  Create a Form Element

**Link to the challenge:**
https://www.freecodecamp.org/learn/responsive-web-design/basic-html-and-html5/create-a-form-element

Hello @PaulineMuthoka , welcome to the forum.

Please look at the instructions closely. Can you see the example <form> given in the instructions?

You are required to create a <form> exactly like that with the existing input wrapped inside the form.

The second code block should work except that you have modified the input. Don’t modify the input. Just wrap it inside the form element and it should pass.

Hi Pauline, maybe i can help you, this was also difficult for me. You should create a form like this:

<form action="https://www.freecatphotoapp.com/submit-cat-photo">
<input type="text"
placehorlder= "cat photo url"></form>

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