-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
33 lines (29 loc) · 1.01 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
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Olympic Games</title>
<link rel="stylesheet" href="styles/index.css" />
<script src="scripts/index/mapdata.js"></script>
<script src="scripts/index/worldmap.js"></script>
<script src="scripts/index/initializeMap.js"></script>
</head>
<body>
<div class="main-container">
<div class="center">
<img src="images/olympic_symbole.png" alt="Logo of the Olympics" class="logo-image">
</div>
<h1> Ring of Time : An Olympic Legacy </h1>
<div class="menu">
<a href="pages/olympics.html">Olympics</a>
<a href="pages/history.html">History</a>
<a href="pages/about_us.html">About Us</a>
</div>
<div class="button-container">
<button id="backButton">Back</button>
</div>
<div id="mapContainer"></div>
</div>
</body>
</html>