-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (27 loc) · 847 Bytes
/
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
36
37
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Calculator</title>
<link rel="icon" href="icon.png">
<link rel="stylesheet" href="style.css">
</head>
<body>
<p id="title">Calculator</p>
<div class="container">
<div class="result">
<p id="show"></p>
</div>
<div class="calc-body">
<input type="number" id="number-1">
<input type="number" id="number-2">
<input type="button" id="sum" value="+">
<input type="button" id="subtract" value="-">
<input type="button" id="multiply" value="*">
<input type="button" id="division" value="/">
</div>
</div>
<script src="calc.js"></script>
</body>
</html>