-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquests.html
63 lines (63 loc) · 2.58 KB
/
quests.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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,[email protected],100..700,0..1,-50..200" />
<link href="https://fonts.googleapis.com/css2?family=Alegreya:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&family=Carter+One&family=Lumanosimo&family=Montez&family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script src="quests.js" defer></script>
<script src="storage.js"></script>
<script src="myFunctions.js"></script>
<title>Hero's Log</title>
</head>
<body>
<header>
<nav>
<img src="images/heros-log-logo.png" alt="hero's log logo">
<ul>
<li>
<a href="index.html">Characters</a>
</li>
<li>
<a href="quests.html">Quests</a>
</li>
<li>
<a href="items.html">Items</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="quests-contents">
<aside>
<ul id="quest-list">
</ul>
</aside>
<section id="quests-container" class="quests-container">
</section>
</div>
</main>
<div class="pick-heroes">
<div class="pick-heroes-bg-image">
<fieldset id="heroes-fieldset">
<legend>Choose the heroes for this quest:</legend>
<button class="start-quest-btn" id="start-quest-btn"></button>
</fieldset>
</div>
</div>
<div class="alert hide-element">
<span class="alert-message"></span>
<span class="alert-close-btn">×</span>
</div>
</body>
<footer>
<p>Created by GreyNewfie @2024 as part of the <a href="https://www.getcoding.ca/">Get Coding</a> program</p>
<div class="footer-logos">
<a href="https://github.com/GreyNewfie"><img class="github-footer-logo" src="github-mark/github-mark-white.png" alt="GitHub logo"></a>
<a href="https://www.linkedin.com/in/danny-simms-2a1463"><img class="linkedin-footer-logo" src="LinkedIn-Logos/LI-in-Bug-white.png" alt="linkedin icon"/></a>
</div>
</footer>
</html>