<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
</head>
<body>
<h2> Reset button using input tag</h2>
<form>
<div>
<label for="name">Enter employee name </label>
<input type="text" id="name" name="name">
</div>
<div>
<label for="age"> Age </label>
<input type="number" id="age" name="age" min="18" max="60">
</div>
<input type="submit">
<!-- This button is used to erase the form data to the initial value-->
<input type="reset">
</form>
</body>
</html>