How should i do this exercise?

https://learn.freecodecamp.org/responsive-web-design/basic-html-and-html5/create-a-form-element

Hey redoz94,
where are your problem?? its too easy

in this exercise it is asking you to put input tag within form( nested with form) and put an attribute of action that’s it

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

just try as above .

Nest your text input element within a form element.