how to make a button as submit button

Solutions on MaxInterview for how to make a button as submit button by the best coders in the world

showing results for - "how to make a button as submit button"
Thibaud
06 Jun 2020
1<form>
2	<label>Phone: </label>
3	<input type="text" required>
4	<button> type = "submit" </button>
5</form>
Audrey
23 Nov 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