-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (38 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/style.css">
<link rel="shortcut icon" type="x-icon" href="./assets/img/tab-icon.png">
<title>Time in 5 cities</title>
</head>
<body>
<section class="times">
<div data-timezone="America/New_York">
<h2>New York</h2>
<output>00:00:00</output>
</div>
<div data-timezone="Europe/London">
<h2>London</h2>
<output>00:00:00</output>
</div>
<div data-timezone="Europe/Paris">
<h2>Paris</h2>
<output>00:00:00</output>
</div>
<div data-timezone="Europe/Berlin">
<h2>Berlin</h2>
<output>00:00:00</output>
</div>
<div data-timezone="Asia/Baku">
<h2>Baku</h2>
<output>00:00:00</output>
</div>
</section>
<script src="https://moment.github.io/luxon/global/luxon.min.js">
</script>
<script src="./js/times.js">
</script>
</body>
</html>