-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
76 lines (69 loc) · 3.58 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
<!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">
<meta name="description" content="This Responsive Calculator is a portfolio project and challenge made by Frotntend Mentor">
<meta name="keywords" content="calculator, responsive, frontend, mentor, challenge, portfolio, project, html, css, javascript">
<meta name="author" content="Igor Costa Braz">
<meta name="robots" content="index, follow">
<meta name="googlebot" content="index, follow">
<meta name="google" content="notranslate">
<title>Calculator</title>
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<link rel="canonical" href="https://github.com/Igorcbraz/Calculadora">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/minified/introjs.min.css" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="./src/css/index.css">
</head>
<body>
<div class="calc container-fluid">
<div class="row calc-content justify-content-center w-100 mx-auto">
<div class="col-12 col-md-8 col-lg-6 col-xl-4 ">
<div class="container calc-top">
<div class="row justify-content-end" id="key-selector-container">
<span class="col-1 key-selector" data-key="1">1</span>
<span class="col-1 key-selector" data-key="2">2</span>
<span class="col-1 key-selector" data-key="3">3</span>
<input type="text" id="hiddenInput" style="position: absolute; left: -9999px;">
</div>
<div class="calc-top row">
<h3 class="col-6" id="calc-title">calc</h3>
<h4 class="col-3" id="reset-theme">theme</h4>
<div class="col-3 toggle">
<div class="btn-group">
<input type="range" id="btnTheme" min="1" max="3" value="1">
</div>
</div>
</div>
<div class="calc-top-result row">
<input type="text" class="col-12" id="display" placeholder="0" disabled></input>
</div>
</div>
<div class="calc-keys">
<div class="container" id="buttons-container">
</div>
</div>
</div>
</div>
</div>
<button id="startVoice" class="floating-btn">
<i class="fas fa-microphone-slash" id="microphoneIcon"></i>
<span id="microphoneTooltip" class="tooltip">Ativar microfone</span>
</button>
<div id="github-stars" class="github-stars">
<a href="https://github.com/Igorcbraz/Calculadora" target="_blank">
<i class="fab fa-github"></i>
<span id="stars-count">0</span> stars
</a>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/minified/intro.min.js"></script>
<script type="module" src="./src/js/main.js"></script>
<script type="module" src="./src/constants/index.js"></script>
</body>
</html>