-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (54 loc) · 2.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-9ndCyUaIbzAi2FUVXJi0CjmCapSmO7SnpJef0486qhLnuZ2cdeRhO02iuK6FUUVM"
crossorigin="anonymous"
/>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet"
/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.29.4/moment.min.js"></script>
<script src="https://momentjs.com/downloads/moment-timezone-with-data.js"></script>
<link rel="stylesheet" href="src/styles.css" />
<title>World Clocks</title>
</head>
<body>
<div class="container shadow p-3 mb-5 bg-white rounded mx-auto mt-5">
<h1>World Clock Project</h1>
<select class="form-select" aria-label="Default select example">
<option value="" selected>Select a city..</option>
<option value="current">Current Location</option>
<option value="Europe/Paris">Paris</option>
<option value="Europe/London">London</option>
<option value="Europe/Madrid">Madrid</option>
<option value="Antarctica/Vostok">Vostok</option>
<option value="Europe/Athens">Athens</option>
<option value="America/Mexico_City">Mexico</option>
<option value="Africa/Casablanca">Casablanca</option>
</select>
<div id="cities"></div>
<div id="backHomeLink">
<a href="index.html">Back Home</a>
</div>
</div>
<footer>
<span class="code-by">Coded by Jennifer DAUM ♡ </span>
<a href="https://github.com/jen-daum/world-clock" target="”_blank”">
<img
src="pictures/pinned-octocat.svg"
alt="logo of github"
id="github-logo"
/>
</a>
</footer>
<script src="src/index.js"></script>
</body>
</html>