I want to make a calculation form where you would input numbers and when you click calculate and it will calculate the result
<label>Feet</label> <input id="x" type="number" placeholder="Feet" required> <label>final</label> <input id="y" type="number" placeholder="..." disabled> <p> will calc<span div I’d="cal"></span> </p> <button onclick="f()"> calculate </button> <script> var x = 2; var y = 5; function f() { document.getElementById("cal").innerHTML = x + y; } </script>