-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquiz.html
85 lines (63 loc) · 2.09 KB
/
quiz.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
<!DOCTYPE html>
<html lang= "pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css"/>
<title> QUIZ QUAL É O MEU NOME? </title>
</head>
<body>
<div class="home-box custom-box">
<!-- <h3>::VAMOS JOGAR::</h3>
<p>TOTAL DE PERGUNTAS: <span class="total-question"></span></p> -->
<button type="button" class="btn" onclick="startQuiz()">JOGAR</button>
</div>
<div class="quiz-box custom-box hide">
<div class="question-number">
</div>
<div class="question-text">
</div>
<div class="option-container">
</div>
<div class="next-question-btn">
<button type="button" class="btn" onclick="next()">PRÓXIMO</button>
</div>
<div class="answers-indicator">
</div>
</div>
<div class="result-box custom-box hide">
<h1>RESULTADO</h1>
<table>
<tr>
<td>TOTAL DE PERGUNTAS</td>
<td><span class="total-question"></span></td>
</tr>
<tr>
<td>TENTATIVAS</td>
<td><span class="total-attempt"></span></td>
</tr>
<tr>
<td>CORRETAS</td>
<td><span class="total-correct"></span></td>
</tr>
<tr>
<td>ERRADAS</td>
<td><span class="total-wrong"></span></td>
</tr>
<tr>
<td>PORCENTAGEM</td>
<td><span class="percentage"></span></td>
</tr>
<tr>
<td>TOTAL DE PONTOS</td>
<td><span class="total-score"></span></td>
</tr>
</table>
<button type="button" class="btn" onclick="tryAgainQuiz()">JOGAR NOVAMENTE</button>
<button type="button" class="btn" onclick="goToHome()">INÍCIO</button>
</div>
<script src="js/question.js"></script>
<script src="js/app.js"></script>
</body>
</html>