-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathuserinput.html
More file actions
32 lines (27 loc) · 940 Bytes
/
userinput.html
File metadata and controls
32 lines (27 loc) · 940 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>User Input Example</title>
</head>
<body>
<h2>Enter Two Numbers</h2>
<form>
<label for="num1">First Number:</label>
<input type="number" id="num1" name="num1"><br><br>
<label for="num2">Second Number:</label>
<input type="number" id="num2" name="num2"><br><br>
<button type="button" onclick="calculate()">Submit</button>
</form>
<p id="result"></p>
<script>
function calculate() {
let a = parseFloat(document.getElementById("num1").value);
let b = parseFloat(document.getElementById("num2").value);
let result = a + b; // You can change + to -, *, / etc.
document.getElementById("result").innerHTML = "Result: " + result;
}
</script>
</body>
</html>