Good work getting there!
Example:
<form action="/url-where-you-want-to-submit-form-data">
<input>
</form>
Instructions:
Nest the existing
inputelement inside aformelement and assign"https://www.freecatphotoapp.com/submit-cat-photo"to theactionattribute of theformelement.
Given code:
<input type="text" placeholder="cat photo URL">
Final code:
<form action="https://www.freecatphotoapp.com/submit-cat-photo">
<input type="text" placeholder="cat photo URL">
</form>
I’m not sure how make those instructions clearer, but if you have any ideas, I’m all ears. It looks like straight line copy-paste of instructions into the example to me, but I’ve been writing code for a while.