What you need to do in this challenge is that you need to create a form element with an action attribute in it. Then, you need to give https://freecatphotoapp.com/submit-cat-photo as the action attribute’s value. Then, you need to nest the existing input element inside the form element.
If you don’t understand nesting, I will explain:
<div>
<p>Kitty Ipsum</p> // this is now nested inside the div
</div>
In the above code, you can see that the p element is inside the div element’s opening and closing tag. When you do so, the p element is nested inside the div element and the p becomes the child element of the div.
This is the way you need to nest the input element inside the form element.