-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
38 lines (34 loc) · 1.29 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<title>Finance Friends: Landing Page</title>
<link rel="stylesheet" href="styles.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href='https://fonts.googleapis.com/css?family=Inter' rel='stylesheet'>
</head>
<body id="body">
<nav id="nav">
<div id="logo">
<img src="img/horse_black.png" alt="Trojan Horse">
<a id="trip" href="home.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-resources">
<h1>About Trip to Troy</h1>
<h2 id="slogan">Everyday Opulence: Maximizing your money and making room for everyday luxuries.</h2>
<p>
Trip to Troy is game designed to help students learn about the value of budgeting and
the difficulties of making everday financial decisions. The game also seeks to expose users to the local economy of Troy,
and promote small minority-owned businesses.
</p>
</main>
<script src="jquery-3.7.1.min.js"></script>
<script src="index.js"></script>
</body>
</html>