-
Notifications
You must be signed in to change notification settings - Fork 116
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 776 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 776 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html>
<head>
<title>Calculator</title>
<script src="./calculator.js"></script>
</head>
<body>
<div class="calculator">
<h1>Calculator</h1>
<input type="number" id="num1" placeholder="Enter first number">
<input type="number" id="num2" placeholder="Enter second number">
<div class="buttons">
<button onclick="calculate('add')">Add</button>
<button onclick="calculate('subtract')">Subtract</button>
<button onclick="calculate('multiply')">Multiply</button>
<button onclick="calculate('divide')">Divide</button>
<button onclick="calculate('modulo')">Modulo</button>
</div>
<p id="result"></p>
</div>
</body>
</html>