-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (36 loc) · 1.32 KB
/
index.html
File metadata and controls
43 lines (36 loc) · 1.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="css/reset.css" type="text/css">
<link rel="stylesheet" href="css/styles.css" type="text/css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Redressed&display=swap" rel="stylesheet">
<title>Flight Facts</title>
</head>
<body>
<header>
<nav>
<h1>Flight Facts</h1>
<ul>
<li></li>
<li><a href="index.html">HOME</a></li>
<li><a href="scores.html">LEADERBOARD</a></li>
<li><a href="about-me.html">ABOUT US</a></li>
<li><a href="photo-cred.html">PHOTO CRED</a></li>
</ul>
</nav>
</header>
<main id="game-container">
</main>
<footer id="foot">
<section>
Welcome to Flight Facts Airlines, the only carrier that can take you to any location instantaneously. We'll be
traveling around the globe today and asking you a question about each location. Unfortunately due to the current
state of the world we cannot allow disembarking at any location other than your original departure point. Consider
your answer carefully and click submit when you're sure. Incorrect answers have a tendency to cause lost luggage.
Good luck!
</section>
<script src="js/app.js"></script>
</footer>
</body>
</html>