-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathFAQs.html
75 lines (64 loc) · 2.59 KB
/
FAQs.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FAQs</title>
<!-- Favicon -->
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<!-- CSS Stylesheet -->
<link rel="stylesheet" href="FAQs.css">
<!-- FontAwesome for Icons -->
<script src="https://kit.fontawesome.com/a076d05399.js"></script>
</head>
<body>
<!-- FAQ Container -->
<div class="faqcontainer">
<h1><img src="assets/images/icon-star.svg" alt="Star Icon">FAQs</h1>
<!-- FAQ Question 1 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> How do I start the game?</summary>
<p>Click the "Start" button to begin the game.</p>
</details>
</div>
<!-- FAQ Question 2 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> How do I move and shoot in the game?</summary>
<p>You can use your keyboard arrow keys or on-screen controls to move your spaceship and shoot at alien ships.</p>
</details>
</div>
<!-- FAQ Question 3 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> How many lives do I have?</summary>
<p>You have 3 lives. You lose a life if an alien reaches your base or if your ship is hit.</p>
</details>
</div>
<!-- FAQ Question 4 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> What happens when I lose all my lives?</summary>
<p>When you lose all 3 lives, the game ends. Click "Restart" to try again.</p>
</details>
</div>
<!-- FAQ Question 5 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> How do I progress in the game?</summary>
<p>To progress, you must destroy all alien ships in each wave to move on to the next level and increase your score.</p>
</details>
</div>
<!-- FAQ Question 6 -->
<div class="question">
<details>
<summary><img src="assets/images/icon-minus.svg" class="arrow"> Where can I find more information about the game?</summary>
<p>Refer to the game instructions for detailed gameplay rules and tips.</p>
</details>
</div>
</div>
<!-- External JS -->
<script src="FAQs.js"></script>
</body>
</html>