Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 287 Bytes

Challenge-Add-a-Submit-Button-to-a-Form.md

File metadata and controls

8 lines (7 loc) · 287 Bytes

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>