-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (40 loc) · 1.65 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
<!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">
<link rel="shortcut icon" href="./images/clock.png" type="image/x-icon">
<link rel="stylesheet" href="./styles.css">
<script src="./main.js" defer></script>
<title>Clock</title>
</head>
<body>
<div class="container">
<div class="clock">
<div class="circle" id="sc" style="--clr:#04fc43;"><em></em></div>
<div class="circle circle2" id="mn" style="--clr:#fee800;"><em></em></div>
<div class="circle circle3" id="hr" style="--clr:#ff2972;"><em></em></div>
<span style="--i:1;"><strong>1</strong></span>
<span style="--i:2;"><strong>2</strong></span>
<span style="--i:3;"><strong>3</strong></span>
<span style="--i:4;"><strong>4</strong></span>
<span style="--i:5;"><strong>5</strong></span>
<span style="--i:6;"><strong>6</strong></span>
<span style="--i:7;"><strong>7</strong></span>
<span style="--i:8;"><strong>8</strong></span>
<span style="--i:9;"><strong>9</strong></span>
<span style="--i:10;"><strong>10</strong></span>
<span style="--i:11;"><strong>11</strong></span>
<span style="--i:12;"><strong>12</strong></span>
</div>
<!-- Digital Clock -->
<div id="time">
<div id="hours" style="--clr:#ff2972;">00</div>
<div id="minutes" style="--clr:#fee800;">00</div>
<div id="seconds" style="--clr:#04fc43;">00</div>
<div id="ampm">AM</div>
</div>
</div>
</body>
</html>