generated from Code-Institute-Org/gitpod-full-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
91 lines (81 loc) · 4.38 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="assets/css/style.css">
<title>Document</title>
</head>
<body id="stars">
<header>
<h1 id="game-title" aria-label="Game title and link that restarts the game if clikced.">Greek Mythology Quiz</h1>
</header>
<div id="game-area">
<section id="start-window" class="game-parent-container">
<form class="start-menu" id="start-form">
<h2 class="top-section">Start</h2>
<div id="game-options-section" class="middle-section">
<input type="radio" id="basic" name="quiz-difficulty" value="basic" class="radio-btn" required>
<label for="basic" class="game-level raised-box purple-hover selectable">Basic</label>
<br>
<input type="radio" id="moderate" name="quiz-difficulty" value="moderate" class="radio-btn">
<label for="moderate" class="game-level raised-box purple-hover selectable">Moderate</label>
<br>
<input type="radio" id="challenging" name="quiz-difficulty" value="challenging" class="radio-btn">
<label for="challenging" class="game-level raised-box purple-hover selectable">Challenging</label>
<br>
<input type="text" name="player-name" placeholder="Enter Name" id="player-name" class="raised-box dark-on-light" required>
</div>
<div id="start-game-section" class="bottom-section">
<button type="submit" id="start-game"><i class="fa-regular fa-circle-play logo-hover"></i></button>
</div>
</form>
</section>
<section id= "question-window" class="game-parent-container">
<h2 class="top-section">Question
<span id= question-number>0</span>/5
</h2>
<div id="display-text" class="middle-section">
<p class="raised-box" id="question-paragraph" >Question goes here!</p>
<button class="answers raised-box purple-hover selectable">First Option</button>
<button class="answers raised-box purple-hover selectable">Second Option</button>
<button class="answers raised-box purple-hover selectable">Third Option</button>
</div>
<div id ="staus-container" class="bottom-section">
<div>Score <span id="score">0</span></div>
<button id="move-on">
<i id="next-question" class="fa-solid fa-chevron-right logo-hover" ></i>
<i id="finish-game" class="fa-solid fa-flag-checkered logo-hover" ></i>
</button>
</div>
</section>
<section id = "finish-window" class="game-parent-container">
<h2 class="top-section"> Finish!</h2>
<div class="middle-section">
<p class="raised-box" id="score-feedback"> Your scored 30 points!</p>
</div>
<div id="return-start" class="bottom-sectio">
<i class="fa-solid fa-rotate-left logo-hover"></i>
</div>
</section>
<img src="assets/images/blue-athena-mirrored.png" id="athena-img" alt="Image of Greek Godess Athena statue.">
<img src="assets/images/blue-athena-half.png" id="athena-img-half" alt="Image of Greek Godess Athena statue.">
</div>
<footer>
<ul class="social-media-links">
<li>
<a href="https://linkedin.com/in/hilla-muraja-093127114" target="_blank" rel="noopener"
aria-label="Visit my LinkedIn page (opens in a new tab)"><i class="fa-brands fa-linkedin logo-hover"></i></a>
</li>
<li>
<a href="https://github.com/HMuraja/mythology-quiz" target="_blank" rel="noopener"
aria-label="See the project in GitHub (opens in a new tab)"><i class="fa-brands fa-github logo-hover"></i></a>
</li>
</ul>
</footer>
<script src="https://kit.fontawesome.com/abe8d276a8.js" crossorigin="anonymous"></script>
<script src="assets/js/questions.js"></script>
<script src="assets/js/script.js"></script>
</body>
</html>