forked from investIN-Project/Calculator-Challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
98 lines (90 loc) · 2.71 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html>
<head>
<title>Calculator 3000</title>
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T"
crossorigin="anonymous"
/>
<meta charset="UTF-8" />
</head>
<body>
<div id="container">
<h1>Calculator 3000</h1>
</div>
<!-- <div id="app"></div> -->
<div class="calculator card">
<input type="text" class="calculator-info z-depth-1" value="" disabled />
<input
type="text"
class="calculator-screen z-depth-1"
value=""
disabled
/>
<div class="calculator-keys">
<button type="button" class="operator btn btn-info" value="+">+</button>
<button type="button" class="operator btn btn-info" value="-">-</button>
<button type="button" class="operator btn btn-info" value="*">
×
</button>
<button type="button" class="operator btn btn-info" value="/">
÷
</button>
<button type="button" value="7" class="btn btn-secondary waves-effect">
7
</button>
<button type="button" value="8" class="btn btn-secondary waves-effect">
8
</button>
<button type="button" value="9" class="btn btn-secondary waves-effect">
9
</button>
<button type="button" value="4" class="btn btn-secondary waves-effect">
4
</button>
<button type="button" value="5" class="btn btn-secondary waves-effect">
5
</button>
<button type="button" value="6" class="btn btn-secondary waves-effect">
6
</button>
<button type="button" value="1" class="btn btn-secondary waves-effect">
1
</button>
<button type="button" value="2" class="btn btn-secondary waves-effect">
2
</button>
<button type="button" value="3" class="btn btn-secondary waves-effect">
3
</button>
<button type="button" value="0" class="btn btn-secondary waves-effect">
0
</button>
<button
type="button"
class="decimal function btn btn-decimal"
value="."
>
.
</button>
<button
type="button"
class="all-clear function btn btn-danger btn-sm"
value="all-clear"
>
AC
</button>
<button
type="button"
class="equal-sign operator btn btn-success"
value="="
>
=
</button>
</div>
</div>
<script src="src/index.js"></script>
</body>
</html>