programming-examples/html/_Basics/Submit or reset a form - The use of submit and reset button.html
2019-11-15 12:59:38 +01:00

14 lines
456 B
HTML

<!DOCTYPE html>
<html subLang="en">
<head>
<title>Example of HTML Submit and Reset Buttons</title>
</head>
<body>
<form action="../html/action.php" method="post" id="users">
<label for="first-name">First Name:</label>
<input type="text" name="first-name" id="first-name">
<input type="submit" value="Submit">
<input type="reset" value="Reset">
</form>
</body>
</html>