-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
85 lines (63 loc) · 2.23 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
<!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="style.css">
<title>Quiz de Programção</title>
</head>
<body onload="carregarTodas()">
<main>
<section id="lado">
<div id="placar">
<h3>Placar do Quiz</h3>
<p>
<b>Pontuação:</b><span id="xp">000 xp</span>
</p>
<p>
<b>Pontuação Seguida:</b><span id="pontuacaoSeguida">0</span>
</p>
<hr>
<p>
<b>Acertou: </b><span id="quantAcertou">0</span>
</p>
<p>
<b>Errou: </b><span id="quantErrou">0</span>
</p>
<hr>
<p>
<b>A Questão: </b><span id="aPergunta">1</span>
</p>
<p>
<b>Total de Questões</b><span id="totalQuestoes">10</span>
</p>
</div>
<div id="doacoes">
</div>
</section>
<div id="questinario">
<article id="pergunta">
<p id="questao">Qual é o sistema operacional mais
usado pelos usuarios comuns?</p>
<ol type="A">
<li id="questao_a" onclick="escolher(this);">Windows</li>
<li id="questao_b" onclick="escolher(this);">Linux</li>
<li id="questao_c" onclick="escolher(this);">MacOs</li>
</ol>
<section id="#container-botoes">
<button id="confirmar"
onclick="confirmar()">
Confirmar
</button>
<button id="proximo" disabled
onclick="proximaPergunta()">
Proximo
</button>
</section>
</article>
</div>
</main>
<script type="text/javascript" src="script.js"></script>
</body>
</html>