Skip to content

Challenge Add A Submit Button To A Form

Quincy Larson edited this page Aug 20, 2016 · 1 revision

Challenge Add a Submit Button to a Form

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>
Clone this wiki locally