-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (68 loc) · 3.09 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>World Clock 🌎 Julieatpeace</title>
<link rel="stylesheet" href="css/style.css">
<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=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet">
<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.46/moment-timezone-with-data-1970-2030.js" integrity="sha512-hM6i4DJI8OL0NYA9RkOI8QPm4qc1Vjd3SsImFovPGVsLr3Pvapx+3D4jDl9QzoQ9ClpYdpiih6EqQB1Qxt/hHA==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
</head>
<body>
<section>
<div class="container">
<div class="header">
<h1><a href="/">World clock</a></h1>
<form action="">
<select name="countries" id="countries">
<option value="">Select a country</option>
<option value="current">My location</option>
<option value="America/Guatemala">San Salvador, El Salvador</option>
<option value="Europe/Madrid">Barcelona, Spain</option>
<option value="Europe/Amsterdam">Amsterdam, Neatherlands</option>
<option value="Europe/Bucharest">Bucarest, Romania</option>
</select>
</form>
</div>
<div class="cities" id="cities">
<div class="city" id="el-salvador">
<h1>🇸🇻</h1>
<h2>San Salvador, <br>El Salvador</h2>
<div class="date"></div>
<div class="time"></div>
</div>
<div class="city" id="spain">
<h1>🇪🇸</h1>
<h2>Barcelona, Spain</h2>
<div class="date"></div>
<div class="time"></div>
</div>
<div class="city" id="netherlands">
<h1>🇳🇱</h1>
<h2>Amsterdam, Netherlands</h2>
<div class="date"></div>
<div class="time"></div>
</div>
<div class="city" id="romania">
<h1>🇷🇴</h1>
<h2>Bucarest, Romania</h2>
<div class="date"></div>
<div class="time"></div>
</div>
</div>
</div>
</section>
<footer>
This project was coded by
<a href="https://github.com/julieatpeace">Julieatpeace</a>
and is on
<a href="https://github.com/julieatpeace/world-clock">Github</a>
and hosted on
<a href="https://timewhereyouare.netlify.app/">Netlify</a>.
</footer>
</body>
<script src="js/script.js"></script>
</html>