html counter input

Solutions on MaxInterview for html counter input by the best coders in the world

showing results for - "html counter input"
Clara
11 Jul 2017
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