You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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>