-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (37 loc) · 1.35 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Trail of Shadows</title>
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
<link rel="stylesheet" href="styles/styles.css">
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap" rel="stylesheet">
</head>
<body>
<div id="nav">
<nav>
<div id="logo"><img src="images/TrailofShadowsTransparent.png" alt="Trail of Shadows logo" /></div>
<div id="currentLocation">Location</div>
<div id="playerStats">
<div id="levelStats">
<img id="playerLevelImg" src="" alt="" />
<span id="playerLevel"></span>
</div>
<div id="goldStats">
<img id="playerGoldImg" src="images/goldCoin.png" alt="Gold" />
<span id="playerGold">100</span>
</div>
</div>
</nav>
</div>
<div>
<main>
<p id="dialog">
</p>
</main>
<footer>
</footer>
</div>
</body>
</html>