Challenge Add A Submit Button To A Form - ashish9342/FreeCodeCamp GitHub Wiki
You will need to create a button
element. Here's an example submit button:
<button type="submit">this button submits the form</button>
<form action="/submit-cat-photo">
<input type="text" placeholder="cat photo URL">
<button type="submit">Submit</button>
</form>