1<!DOCTYPE html>
2<html>
3<body>
4
5<form>
6 <label for="points">Points:</label>
7 <input type="number" id="points" name="points" step="3">
8 <button onclick='console.log(document.getElementById("points").value)'>Count</button>
9</form>
10</body>
11</html>
12