-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (38 loc) · 1.51 KB
/
index.html
File metadata and controls
44 lines (38 loc) · 1.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--=============== CSS ===============-->
<link rel="stylesheet" href="assets/css/styles.css">
<title>Retro clock - Bedimcode</title>
</head>
<body>
<div class="container">
<div class="clock">
<div class="clock__circle">
<div class="clock__rounder"></div>
<div class="clock__hour" id="clock-hour"></div>
<div class="clock__minutes" id="clock-minutes"></div>
</div>
<div>
<div class="clock__date">
<span class="clock__day-week" id="date-day-week"></span>
<div>
<span class="clock__month" id="date-month"></span>
<span class="clock__day" id="date-day"></span>
<span class="clock__year" id="date-year"></span>
</div>
</div>
<div class="clock__text">
<span class="clock__text-hour" id="text-hour"></span>
<span class="clock__text-minutes" id="text-minutes"></span>
<span class="clock__text-ampm" id="text-ampm"></span>
</div>
</div>
</div>
</div>
<!--=============== MAIN JS ===============-->
<script src="assets/js/main.js"></script>
</body>
</html>