-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (53 loc) · 2.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<!-- This is the first step in making the document responsive but scaling the items to screen -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<!-- This is the style links -->
<link rel="stylesheet" type="text/css" href="assets/style.css">
<!-- This is the title-->
<title>Code Quiz</title>
</head>
<body>
<!-- This is a wrapper -->
<div id="wrapper">
<!-- Div for timer -->
<div id="currentTime"></div>
<!-- Div for quiz content -->
<div id="questionsDiv">
<h1>QUIZ ME QUICK 🧠❓💋</h1>
<p>Can you answer the following questions within the time limit? Keep in mind that each incorrect
answer
will subtract ten seconds from the time!
</p>
<p>
🐸 GOOD LUCK! 🍀
</p>
<ul id="choicesUl"></ul>
<ul style="list-style-image: url(assets/frogfacesmall.png);"></ul>
<!-- Buttons -->
<button id="startTime"> START QUIZ 🕒 </button>
<p>
</p>
</div>
<!-- Link to highscores page -->
<a href="highscores.html">View Highscores</a>
</div>
<!-- Link to questions Javascript document -->
<script src="questions.js"></script>
<!-- This is where we insert the link for google fonts-->
<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=Fredoka:wght@600&family=Libre+Baskerville&family=Roboto+Slab:wght@100;700&family=Rubik:wght@300;400&family=Syne+Mono&display=swap" rel="stylesheet">
<!-- Insert entertaining picture to make it more eye catching and interesting for user -->
<img src="assets/frogpinkhat.png">
</body>
<!-- This is the original hergemony brand footer -->
<footer>
<div id="footer">
<h1> ❤ Hergemony™ Digital Services 2022 ❤</h1>
</div>
</footer>
</html>