-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (52 loc) · 1.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Glassmorphism Calculator</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css" rel="stylesheet">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@300;400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="center-con">
<div class="calc">
<div class="display">
<div class="screen"></div>
</div>
<div class="buttons">
<div>C</div>
<div>(</div>
<div>)</div>
<div><i class="ri-delete-back-2-fill"></i></div>
<div>×<sup>2</sup></div>
<div style="font-size: 0.9em;">+/−</div>
<div>%</div>
<div>/</div>
<div>7</div>
<div>8</div>
<div>9</div>
<div>×</div>
<div>4</div>
<div>5</div>
<div>6</div>
<div>-</div>
<div>1</div>
<div>2</div>
<div>3</div>
<div>+</div>
<div>00</div>
<div>0</div>
<div>.</div>
<div>=</div>
<div class="operators"></div>
</div>
</div>
</div>
<audio>
<source src="calculator-glassmorphism-js-project_btn--sound.mp3" type="audio/mpeg">
</audio>
<script src="main.js"></script>
</body>
</html>