-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (41 loc) · 1.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
<!DOCTYPE html>
<html>
<head>
<title>FStuDies</title>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<nav>
<div class="logo">
<span>FStuDies</span>
</div>
</nav>
<main>
<div class="quiz-container">
<div class="welcome-message">
<h1>We<span class="underline">lcome</span> to the Qu<span>ize</span>Zone</h1>
<p><span class="underline-span">your knowledge</span> and have fun!</p>
</div>
<div class="dropdown-container">
<label for="languageSelect">Select a language:</label>
<select id="languageSelect" onchange="loadQuestions()">
<option value="">Select</option>
<option value="python">Python</option>
<p>Beginner's challenges</p>
<option value="javascript">JavaScript</option>
<option value="css">CSS</option>
<option value="html">HTML</option>
</select>
</div>
<div id="questionsContainer"></div>
<a href="index2.html" class="goback-button">Go Back</a>
</div>
</main>
<script src="script.js"></script>
</body>
<footer>
<div class="container">
<p>© 2023 FStuDies. All rights reserved.</p>
</div>
</footer>
</html>