Solve problem "Add a Submit Button to a Form" online - Learn Python 3 - Snakify

Lesson: HTML5 and CSS

Add a Submit Button to a Form

Let's add a submit button to your form. Clicking this button will send the data from your form to the URL you specified with your form's action attribute.

Here's an example submit button:

<button type="submit">this button submits the form</button>

Add a submit button to your form element with type submit and "Submit" as its text.


The content on this page is licensed under Attribution-ShareAlike 4.0 International. Original authors: freeCodeCamp, the content was modified.