-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (50 loc) · 2.07 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<!DOCTYPE html>
<html>
<head>
<title>Calculator Project</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<div id="container">
<div id="text">
<h3>CALCULATOR</h3>
</div>
<div id="screen"></div>
<div id="btn-container">
<div class="row">
<button type="button" class="btn" data-value="AC">AC</button>
<button type="button" class="btn" data-value="+/-">+/-</button>
<button type="button" class="btn" data-value="%">%</button>
<button type="button" class="btn operator" data-value="/">/</button>
</div>
<div class="row">
<button type="button" class="btn" data-value="7">7</button>
<button type="button" class="btn" data-value="8">8</button>
<button type="button" class="btn" data-value="9">9</button>
<button type="button" class="btn operator" data-value="*">*</button>
</div>
<div class="row">
<button type="button" class="btn" data-value="4">4</button>
<button type="button" class="btn" data-value="5">5</button>
<button type="button" class="btn" data-value="6">6</button>
<button type="button" class="btn operator" data-value="-">-</button>
</div>
<div class="row">
<button type="button" class="btn" data-value="1">1</button>
<button type="button" class="btn" data-value="2">2</button>
<button type="button" class="btn" data-value="3">3</button>
<button type="button" class="btn operator" data-value="+">+</button>
</div>
<div class="row">
<button type="button" id="zero" class="btn" data-value="0">0</button>
<button type="button" class="btn" data-value=".">.</button>
<button type="button" class="btn operator" data-value="=">=</button>
</div>
</div>
</div>
<p id="copyright">Copyright © CHIRAG RAJ</p>
<script src="index.js"></script>
</body>
</html>