-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (30 loc) · 1.09 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
<!DOCTYPE html>
<html lang="pt-br">
<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">
<title>Calculadora Dark & Light</title>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200" />
<link rel="stylesheet" href="styles_script/dark-light_Style.css">
</head>
<body class="Dark-Mode">
<div class="container">
<div class="toggle-container">
<div class="toggle-button">
<span class="material-symbols-rounded">dark_mode</span>
</div>
</div>
<div class="display">
<div class="calculo">0</div>
<div class="result">0</div>
</div>
<div class="keyboard">
<div class="set-keys"></div>
<div class="operator-keys"></div>
<div class="numb-keys"></div>
</div>
</div>
<script src="styles_script/keyboard_&_operations.js"></script>
</body>
</html>