14 lines
456 B
HTML
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> |