-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
60 lines (58 loc) · 2.11 KB
/
Copy pathindex.html
File metadata and controls
60 lines (58 loc) · 2.11 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
<!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" />
<title>Timezone Clocks</title>
<meta description="Different times show different visual" tags="clock, fallen stars, javascript" />
<link rel="stylesheet" href="layout.css" />
<link rel="stylesheet" href="change-day.css" />
<link rel="stylesheet" href="fallen-stars.css" />
<script type="text/javascript" src="clock.js" defer></script>
</head>
<body class="midday dynamic">
<!--- Falling stars-->
<div class="night">
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
<div class="shooting_star"></div>
</div>
<!--- Main-->
<div class="container">
<div class="current">
<div class="current-zone dynamic">
<h1 data-title>Title This Zone</h1>
</div>
<div class="main-clock">
<div class="main-time dynamic" id="main-clock">
<h1 data-time>T</h1>
</div>
<div class="main-sundail dynamic" id="main-clock">
<h1 data-period>T</h1>
</div>
</div>
</div>
<div class="options-zone">
<button class="button-zone dynamic" onclick="changeTimezone('America/Fortaleza')">
<h1>Fortaleza</h1>
</button>
<button class="button-zone dynamic" onclick="changeTimezone('America/Anchorage')">
<h1>Anchorage</h1>
</button>
<button class="button-zone dynamic" onclick="changeTimezone('Asia/Seoul')">
<h1>Seoul</h1>
</button>
<button class="button-zone dynamic" onclick="changeTimezone('Europe/Kirov')">
<h1>Kirov</h1>
</button>
</div>
</div>
</body>
</html>