how to insert a submit button in html

Solutions on MaxInterview for how to insert a submit button in html by the best coders in the world

showing results for - "how to insert a submit button in html"
Amelie
02 Jun 2016
1
2 <form>
3
4    <label for="fname">First name:</label><br>
5  <input 
6  type="text" id="fname" name="fname"><br>
7  <label for="lname">Last 
8  name:</label><br>
9  <input type="text" id="lname" name="lname">
10</form>
11 
Emilie
07 Oct 2016
1
2 <form>
3
4    <label for="fname">First name:</label><br>
5  <input 
6  type="text" id="fname" name="fname"><br>
7  <label for="lname">Last 
8  name:</label><br>
9  <input type="text" id="lname" name="lname">
10</form>
11 
similar questions
queries leading to this page
how to insert a submit button in html