-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (48 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2022 Russian Invasion of Ukraine | Territorial Ownership Timeline</title>
<meta name="description" content="Explore the territorial ownership changes each day of the 2022 Russian invasion of Ukraine war. Step through the map on a day-to-day basis using the interactive timeline.">
<meta name="keywords" content="2022 Russian invasion of Ukraine, territorial ownership, timeline, war, interactive map">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<style>
#gif {
display: none;
}
#loading-message {
text-align: center;
font-size: 18px;
margin-top: 30px;
}
</style>
</head>
<body>
<header>
<h1>2022 Russian Invasion of Ukraine</h1>
<h2>Territorial Ownership Timeline</h2>
<!-- Include relevant headers for the web page -->
</header>
<main>
<div class="container-fluid">
<div class="row">
<div class="col-1"></div> <!-- 1/12 column on the left -->
<div class="col-10">
<div id="timeline"></div>
<div id="loading-message">Loading the interactive visualization...</div>
<video id="gif" src="./territorial_ownership.webm" muted loop></video>
<div class="row mt-4">
<div class="col">
<p class="text-center">Source: <a href="https://commons.wikimedia.org/wiki/File:2022_Russian_Invasion_of_Ukraine_animated.gif">commons.wikimedia.org</a></p>
</div>
</div>
</div>
<div class="col-1"></div> <!-- 1/12 column on the right -->
</div>
</div>
</main>
<script src="script.js"></script>
</body>
</html>