-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
94 lines (85 loc) · 3.68 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
<!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="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/index.css">
<script src="js/App.js" defer></script>
<link rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css">
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/js/bootstrap.bundle.min.js">
</script>
<link rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<script src="https://kit.fontawesome.com/eb1d80cf3a.js"></script>
<title>Document</title>
</head>
<body>
<main class="container">
<div class="outputContainer">
<div class="output__previous me-3" data-previous-operand>
</div>
<div class="output__current me-3" data-current-operand>0</div>
</div>
<div class="buttonContainer">
<div class="d-flex row">
<button class="button__double button--grey clear">Clear</button>
<button
class="button__double button--red delete">Delete</button>
</div>
<div class="d-flex row">
<button class="button__single button--grey number"
data-number>7</button>
<button class="button__single button--grey number"
data-number>8</button>
<button class="button__single button--grey number"
data-number>9</button>
<button class="button__single button--orange operator"
data-operator>÷</button>
</div>
<div class="d-flex row">
<button class="button__single button--grey number"
data-number>4</button>
<button class="button__single button--grey number"
data-number>5</button>
<button class="button__single button--grey number"
data-number>6</button>
<button class="button__single button--orange operator"
data-operator>x</button>
</div>
<div class="d-flex row">
<button class="button__single button--grey number"
data-number>1</button>
<button class="button__single button--grey number"
data-number>2</button>
<button class="button__single button--grey number"
data-number>3</button>
<button class="button__single button--orange operator"
data-operator>-</button>
</div>
<div class="d-flex row">
<button class="button__single button--grey point">.</button>
<button class="button__single button--grey number"
data-number>0</button>
<button
class="button__single button--orange equal operator">=</button>
<button class="button__single button--orange operator"
data-operator>+</button>
</div>
</div>
</main>
<footer class="footerContainer">
<p>
Made by <a class="footer__link" href="https://jakebenz.dev">Jake
Benz</a>
|
<a class="footer__link"
href="https://github.com/jaketbenz/calculator">Github</a>
<i class="fa-brands fa-github"></i>
</p>
</footer>
</body>
</html>