-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (44 loc) · 2.97 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<title>Calculator</title>
<link rel="stylesheet" href="w3.css">
<link rel="stylesheet" href="stylesheet.css">
<script src="https://kit.fontawesome.com/14c2617b32.js" crossorigin="anonymous"></script>
</head>
<body style="background-color: black;">
<div class="calculator"></div>
<input type="text" class="calculator-screen w3-round-xxlarge" value="0" disabled>
<div class="calculator-keys">
<div class="row">
<button class="all-clear w3-round-xxlarge w3-animate-zoom w3-hover-deep-orange">AC</button>
<button class="percentage w3-round-xxlarge w3-animate-zoom w3-hover-white w3-disabled" value="%">%</button>
<button class="operator w3-deep-orange w3-round-xxlarge w3-animate-zoom w3-hover-light-grey" value="/">÷</button>
</div>
<div class="row">
<button class="number w3-round-xxlarge w3-animate-zoom w3-animate-zoom w3-hover-white" value="7">7</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-animate-zoom w3-hover-white" value="8">8</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="9">9</button>
<button class="operator w3-deep-orange w3-round-xxlarge w3-animate-zoom w3-hover-light-grey" value="*">×</button>
</div>
<div class="row">
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="4">4</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="5">5</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="6">6</button>
<button class="operator w3-deep-orange w3-round-xxlarge w3-animate-zoom w3-hover-light-grey" value="-">-</button>
</div>
<div class="row">
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="1">1</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="2">2</button>
<button class="number w3-round-xxlarge w3-animate-zoom w3-hover-white" value="3">3</button>
<button class="operator w3-deep-orange w3-round-xxlarge w3-animate-zoom w3-hover-light-grey" value="+">+</button>
</div>
<div class="row">
<button class="number zero-btn w3-round-xxlarge w3-animate-zoom w3-hover-deep-orange" value="0">0</button>
<button class="decimal w3-round-xxlarge w3-animate-zoom w3-hover-white w3-disabled" value=".">.</button>
<button class="equal-sign w3-deep-orange w3-round-xxlarge w3-animate-zoom w3-hover-light-grey">=</button>
</div>
</div>
<script type="text/javascript" src="script.js"></script>
</body>
</html>