Computer Science, asked by utkggjduwa2037, 1 year ago

Name different types of buttons used in html form .

Answers

Answered by Anonymous
12
Hello Mate,
Types of button used in HTML form÷

There are three types of buttons:

submit — Submits the current form data. (This is default.)

reset — Resets data in the current form.

button — Just a button. Its effects must be controlled by something else (that is, with Java Script)

Hope it will help you lot...
Please Mark Me As a brainliest...
Answered by Anonymous
2
formaction="/action_page.php"method="get">
  First name: <inputtype="text" name="fname"><br>
  Last name: <inputtype="text" name="lname"><br>
  <button type="submit"value="Submit">Submit</button>
  <button type="reset"value="Reset">Reset</button>
</form>
Similar questions