-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (41 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<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">
<link rel="stylesheet" href="styles/global.css">
<title>Relógio</title>
</head>
<body>
<main id="bg" class="container">
<h1 id="title">
HORÁRIO LOCAL<br />
</h1>
<label id="change_font_size">
<h4>Tamanho da fonte:</h4>
<input type="range" min="1" max="13" step="0.1" value="6" id="slider" oninput="Aumenta()">
<br>
</label>
<br>
<h3 id="clock"></h3>
<footer id="settings">
<label class="change_color_label">
<h4>COR DO RELÓGIO: </h4>
<input type="color" value="#711DFA" onchange="changeColor(this, '#clock')">
</label>
<label class="change_color_label">
<h4>COR DO FUNDO: </h4>
<input type="color" value="#7686E6" onchange="changeColor(this, '#bg')">
</label>
<label class="change_color_label">
<h4>COR DA FONTE: </h4>
<input type="color" value="#f3f3f3" onchange="changeFontColor(this)">
</label>
</footer>
</main>
<script src="scripts/index.js"></script>
<script src="scripts/settings.js"></script>
<script src="script/handleHour.js"></script>
</body>
</html>