-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
39 lines (37 loc) · 1.22 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="styles.css" rel="stylesheet">
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
<script src="https://api.tiles.mapbox.com/mapbox-gl-js/v3.1.0/mapbox-gl.js"></script>
<link href="https://api.tiles.mapbox.com/mapbox-gl-js/v3.1.0/mapbox-gl.css" rel="stylesheet" />
</head>
<body>
<nav id="nav">
<div id="logo">
<img src="img/horse_black.png" alt="Trojan Horse">
<a id="trip" href="index.html">Trip to Troy</a>
</div>
<div id="navbuttons">
<a href="./instructions.html">Instructions</a>
<a href="./resources.html">Resources</a>
<a href="./about.html">About</a>
</div>
</nav>
<main id="main">
<div class="content">
<div id="myModal" class="modal">
<!-- Modal content -->
<div class="modal-content">
<span class="close">×</span>
</div>
</div>
<div id="map"></div>
</div>
</main>
<script src="jquery-3.7.1.min.js"></script>
<script src="index.js"></script>
</body>
</html>