-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
73 lines (67 loc) · 2.45 KB
/
index.html
File metadata and controls
73 lines (67 loc) · 2.45 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
<!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="index.css" />
<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.47/moment-timezone-with-data-1970-2030.min.js" integrity="sha512-XvDDOXNYp84l3IETKvzrmJlYUIMrii8o0PGutSneTeaJ14Xcg0MThfvViF0c2JMNKUtmUek6/AY9e/sY4AmiZg==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<title>World Clock - Matt Delac</title>
</head>
<body>
<div class="container">
<h1>World Clock</h1>
<select id="city-select">
<option value="">Select a city..</option>
<option value="current">My Location 📍 </option>
<option value="Europe/London">London 🇬🇧</option>
<option value="America/New_York">New York 🇺🇸</option>
<option value="Europe/Paris">Paris 🇫🇷</option>
<option value="Asia/Hong_Kong">Hong Kong 🇭🇰</option>
<option value="Africa/Lagos">Lagos 🇳🇬</option>
</select>
<div id="cities">
<!-- City 1 -->
<div class="city" id="new-york">
<div>
<h2>New York 🇺🇸</h2>
<div class="date"></div>
</div>
<div>
<div class="time"></div>
</div>
</div>
<!-- City 2 -->
<div class="city" id="london">
<div>
<h2>London 🇬🇧</h2>
<div class="date"></div>
</div>
<div>
<div class="time"></div>
</div>
</div>
<!-- City 3 -->
<div class="city" id="tokyo">
<div>
<h2> Tokyo 🇯🇵</h2>
<div class="date"></div>
</div>
<div>
<div class="time"></div>
</div>
</div>
</div>
</div>
<footer> This project was coded by <a
href="https://github.com/StephieOj" target="_blank"> <strong>Stephie Oj</strong></a> and is <a
href="https://github.com/StephieOj/JS-World-Clock" target="_blank"> <strong>open-sourced on GitHub</strong> </a> and is hosted on <a
href="https://stephieoj-world-clock.netlify.app/" target="_blank"> <strong>Netlify</strong></a>
<br/>
<br/>
<img class="stephie" src="assets/StephieAi.png" alt="stephieai" height="80px" width="80px">
</footer>
<script src=" index.js"> </script>
</body>
</html>