MAX ATTRIBUTE IN NUMBER INPUT FIELD
Run
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>HTML</title>
</head>
<body>
    <h2> Using max attribute in input field</h2>
	<label for="name">Enter name </label>
	<input type="text" id="name" name="name"><br>
	<label for="age"> Enter age</label>
    <input type="number" id="age" name="age" max="60" min="18"><br>
</body>
</html>