-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (63 loc) · 1.9 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.30.1/moment.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.45/moment-timezone-with-data-1970-2030.js"></script>
<title>World Clock - Krisztina Molnar</title>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<div class="container">
<h1>World Clock</h1>
<select id="city">
<option value="">Select a city</option>
<option value="current">My current location</option>
<option value="America/Santiago">Santiago</option>
<option value="America/New_York">New York</option>
<option value="Pacific/Auckland">Auckland</option>
</select>
<div id="cities">
<div class="city" id="rome">
<div>
<h2>Rome</h2>
<div class="date"></div>
</div>
<div class="time"></div>
</div>
<div class="city" id="johannesburg">
<div>
<h2>Johannesburg</h2>
<div class="date"></div>
</div>
<div class="time"></div>
</div>
<div class="city" id="tokyo">
<div>
<h2>Tokyo</h2>
<div class="date"></div>
</div>
<div class="time"></div>
</div>
</div>
</div>
<footer>
Coded by
<strong
><a href="https://www.linkedin.com/in/krisztina-molnar/" target="_blank"
>Krisztina Molnar</a
></strong
>
and open sourced
<strong
><a
href="https://github.com/krisztinamolnar/world-clock"
target="_blank"
>on GitHub</a
></strong
>
</footer>
<script src="javascript/index.js"></script>
</body>
</html>