-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (41 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Quiz App | By murichristopher</title>
<link rel="stylesheet" href="https://murichristopher.github.io/10ProjectsIn10Hours-challenge/0.base/style.css">
<link rel="stylesheet" href="style.css">
<script src="script.js" type="module" defer></script>
</head>
<body>
<div class="loading-container container hidded">
<div id="load"></div>
</div>
<div class="start-game-container container">
<div class="main-img">
</div>
<div class="game-info">
<h2 id="game-title">How much do you know about programming?</h2>
<p id="game-message">How well do you think you know your coding languages? Find out in this quiz about programming, coding, and scripting languages! </p>
<button class="button-start" id="buttonStart">START</button>
</div>
<span class="references">created and designed by murichristopher</span>
</div>
<div class="quiz-container ">
</div>
<div class="game-over-container container hidded">
<div class="question-counter">
<div class="game-percent-container question-counter">
<div class="question-counter-number question-active game-percent">
</div>
</div>
</div>
<div class="game-info game-over-info">
<h2 id="game-title"></h2>
<p id="game-message"></p>
<button class="button-start" id="buttonRestart">RESTART QUIZ</button>
</div>
</div>
</body>
</html>