-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (78 loc) · 3.12 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN"
crossorigin="anonymous"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0"
/>
<link
href="https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200;0,6..12,300;0,6..12,400;0,6..12,500;0,6..12,600;0,6..12,700;0,6..12,800;0,6..12,900;0,6..12,1000;1,6..12,200;1,6..12,300;1,6..12,400;1,6..12,500;1,6..12,600;1,6..12,700;1,6..12,800;1,6..12,900;1,6..12,1000&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="src/style.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.44/moment-timezone-with-data-1970-2030.min.js"></script>
<title>World Time - by Eli</title>
</head>
<body>
<main>
<section class="title-section">
<h1>World Time</h1>
<span class="material-symbols-outlined icon-clock"> schedule </span>
</section>
<section>
<select name="places" id="zone_select" class="place-select">
<option value="">Select a zone...</option>
<option value="current">My location</option>
<option value="Asia/Gaza">Gaza</option>
<option value="America/Lima">Lima</option>
<option value="Europe/Sofia">Sofia</option>
</select>
<div id="zones_container">
<div class="zone-div row align-items-center" id="seoul_info">
<div class="col text-start">
<h2>Seoul</h2>
<p class="date"></p>
</div>
<div class="col">
<h3 class="d-flex justify-content-end align-items-start"></h3>
</div>
</div>
<div class="zone-div row align-items-center" id="prague_info">
<div class="col text-start">
<h2>Prague</h2>
<p class="date"></p>
</div>
<div class="col">
<h3 class="d-flex justify-content-end align-items-start"></h3>
</div>
</div>
</div>
<a href="/" class="d-none" id="link_homepage">← go to homepage</a>
</section>
</main>
<footer>
This project was coded by
<a href="https://github.com/Eli032501" target="_blank">Eliana Pereira</a>
and is on
<a href="https://github.com/Eli032501/world-clock-eli" target="_blank">
GitHub
</a>
and hosted on
<a href="https://worlds-time-by-eli.netlify.app/" target="_blank">
Netlify
</a>
</footer>
</body>
<script src="src/script.js"></script>
</html>