-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
95 lines (87 loc) · 3.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Calculator Challenge | niloodev </title>
<!-- "Spartan" font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Spartan:wght@700&display=swap" rel="stylesheet">
<!-- Global style -->
<link href="./index.css" rel="stylesheet">
</head>
<body class="blue">
<!-- Main div -->
<div class="main">
<!-- Header and its elements -->
<div class="header">
<span class="title">calc</span>
<div class="theme-changer">
<span class="theme-text">THEME</span>
<div class="theme-options">
<label class="slide-btn">
<span class="tag">1</span>
<input id="blue" name="option-st" type="radio" />
<span class="check"></span>
</label>
<label class="slide-btn">
<span class="tag">2</span>
<input id="white" name="option-st" type="radio" />
<span class="check"></span>
</label>
<label class="slide-btn">
<span class="tag">3</span>
<input id="purple" name="option-st" type="radio" />
<span class="check"></span>
</label>
</div>
</div>
</div>
<!-- Screen -->
<div class="screen">
<span id="oldValue"></span>
<span id="value"></span>
</div>
<!-- keyboard -->
<div class="toggle">
<div class="row-toggle">
<button class="key-3 key" onclick="addNumber('7')">7</button>
<button class="key-3 key" onclick="addNumber('8')">8</button>
<button class="key-3 key" onclick="addNumber('9')">9</button>
<button class="key-1 key" onclick="deleteNumber()">DEL</button>
</div>
<div class="row-toggle">
<button class="key-3 key" onclick="addNumber('4')">4</button>
<button class="key-3 key" onclick="addNumber('5')">5</button>
<button class="key-3 key" onclick="addNumber('6')">6</button>
<button class="key-3 key" onclick="addOperator('+')">+</button>
</div>
<div class="row-toggle">
<button class="key-3 key" onclick="addNumber('1')">1</button>
<button class="key-3 key" onclick="addNumber('2')">2</button>
<button class="key-3 key" onclick="addNumber('3')">3</button>
<button class="key-3 key" onclick="addOperator('-')">-</button>
</div>
<div class="row-toggle">
<button class="key-3 key" onclick="addNumber('.')">,</button>
<button class="key-3 key" onclick="addNumber('0')">0</button>
<button class="key-3 key" onclick="addOperator('/')">/</button>
<button class="key-3 key" onclick="addOperator('x')">x</button>
</div>
<div class="row-toggle">
<button class="key-1 key" onclick="clearCalc()">RESET</button>
<button class="key-2 key" onclick="solve()">=</button>
</div>
</div>
</div>
<!-- Credits -->
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io/challenges/calculator-app-9lteq5N29" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/niloodev">niloodev</a>.
</div>
<script src="./index.js"></script>
</body>
</html>
<!-- Made by niloodev -->