-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 830 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 830 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculate</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<form>
<label for="num1">Enter First Digit</label>
<input type="number" id="num1">
<label for="num2">Enter Second Digit</label>
<input type="number" id="num2">
<select id="operator">
<option value="+">+</option>
<option value="-">-</option>
<option value="*">*</option>
<option value="/">/</option>
</select>
<p id="output"></p>
<input type="button" onclick="clc()" value="CALCULATE">
</form>
<script src="./script.js"></script>
</body>
</html>