forked from Mandipbhattarai/GDSC_calculator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (46 loc) · 1.54 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
52
53
54
55
56
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="assets/img/calculator_icon.png">
<title>Calculator</title>
<!-- bootstrap css linked here -->
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<!-- style css linked here -->
<link rel="stylesheet" href="assets/css/style.css">
</head>
<body>
<div class="container d-flex justify-content-center align-items-center">
<div class="toggleBtn"></div>
<div class="calculator">
<div class="buttons">
<h2 id="value" class="text-end"></h2>
<span id="clear">Clear</span>
<span>/</span>
<span>*</span>
<span>7</span>
<span>8</span>
<span>9</span>
<span>-</span>
<span>4</span>
<span>5</span>
<span>6</span>
<span id="add">+</span>
<span>1</span>
<span>2</span>
<span>3</span>
<span>0</span>
<span>00</span>
<span>.</span>
<span id="equal">=</span>
</div>
</div>
</div>
<!-- bootstrap js linked here -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- script js linked here -->
<script src="assets/js/script.js"></script>
</body>
</html>