-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
35 lines (35 loc) · 1.24 KB
/
index.html
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
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Calculator</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<h1>Calculator</h1>
<form class="calculator-form">
<div class="form-field">
<label for="first"></label>
<input type="text" id="first" placeholder="Enter first number">
</div>
<div class="form-field">
<label for="second"></label>
<input type="text" id="second" placeholder="Enter second number">
</div>
<div class="form-field">
<button type="button" class="btn" onclick="calculate('addition')">Addition</button>
<button type="button" class="btn" onclick="calculate('subtraction')">Subtraction</button>
</div>
<div class="form-field">
<button type="button" class="btn" onclick="calculate('multiplication')">Multiplication</button>
<button type="button" class="btn" onclick="calculate('division')">Division</button>
</div>
</form>
<div class="result-field">
<p id="sum">Result: </p>
</div>
</div>
<script src="index.js"></script>
</body>
</html>