This repository has been archived by the owner on Nov 14, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
114 lines (96 loc) · 3.57 KB
/
faq.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>System Reset | FAQ</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@500&family=Hind+Vadodara&family=Kanit:wght@700&display=swap" rel="stylesheet">
</head>
<body>
<header>
<a href=/index.html><p id='header-title'>SYSTEM RESET</p></a>
</header>
<div class='description'>
<h1 id='our-game'>FREQUENTLY ASKED QUESTIONS</h1>
</div>
<button type="button" class="collapsible">Q: What race are you playing as?</button>
<div class="collapContent">
<p>A: Human</p>
</div>
<button type="button" class="collapsible">Q: What makes this game unique?</button>
<div class="collapContent">
<p>A: Magic systems, movement system, and enemies!</p>
</div>
<button type="button" class="collapsible">Q: What inspired this game?</button>
<div class="collapContent">
<p>A: The Roguelite genre!</p>
</div>
<button type="button" class="collapsible">Q: What weapons do you use?</button>
<div class="collapContent">
<p>A: The Watermelon Machine Gun</p>
</div>
<button type="button" class="collapsible">Q: How do you get weapons?</button>
<div class="collapContent">
<p>A: You can unlock weapons by defeating bosses & mini bosses!</p>
</div>
<button type="button" class="collapsible"> Q: What platforms will this be available on?</button>
<div class="collapContent">
<p>A: PC, you can also play on the web!</p>
</div>
<button type="button" class="collapsible">Q: Is this game singleplayer or multiplayer?</button>
<div class="collapContent">
<p>A: Singleplayer</p>
</div>
<button type="button" class="collapsible">Q: How do you win?</button>
<div class="collapContent">
<img src="antAnt.gif">
</div>
<button type="button" class="collapsible">Q: Why a computer blight?</button>
<div class="collapContent">
<p>A: It is based off of the idea of cordyceps fungus, which is a species that is known for taking control of the mind of its host (insects) in order to perpetuate its life cycle.</p>
</div>
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function() {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
<footer class='footer'>
<div id='footer-container' class='flex-row'>
<div class='menu flex-col'>
<h4 id='footer-menu'>MENU</h4>
<div id='menu-list'>
<p class='footer-btn'><a href='index.html' class='btn btn-1'>HOME</a></p>
</div>
</div>
<div class='info flex-col'>
<h4 id='footer-info'>INFO</h4>
<div id='info-list'>
<p class='footer-btn'><a href='game.html' class='btn btn-1'>PLAY</a></p>
</div>
</div>
<div class='contact flex-col'>
<h4 id='footer-contact'><a href='contact.html'>CONTACT</a></h4>
<div id='contact-list'>
<p class='footer-btn'></p><a href='faq.html' class='btn btn-1'>FAQ's</a></p>
</div>
</div>
</footer>
<div class="hidden-mobile">
<script src="https://cdn.jsdelivr.net/npm/[email protected]/lib/darkmode-js.min.js"></script>
<script src="./darkModeScript.js"></script>
</div>
</body>
</html>