-
Notifications
You must be signed in to change notification settings - Fork 0
/
TelaPergunta01.html
104 lines (78 loc) · 2.85 KB
/
TelaPergunta01.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!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="css/TelaPergunta.css">
<title> Vestibulinho Etec </title>
<link rel="shortcut icon" href="./imagens2/imagensTelaLogin/DinoCode.png" type="image/x-icon">
</head>
<body>
<script>
const respostas = [];
function coletarResposta(perguntaIndex, proximaPergunta) {
const opcoes = document.getElementsByName("opcao");
let resposta = "";
for (const opcao of opcoes) {
if (opcao.checked) {
resposta = opcao.value;
break;
}
}
if (resposta === "") {
alert("Selecione uma opção.");
} else {
respostas[perguntaIndex] = resposta;
window.location.href = proximaPergunta;
}
}
</script>
<a href="TelaPrincipal.html">
<div class="BotaoVoltar">
<img src="./imagens/imagensTelaCalendario/BotaoVoltar.png" alt="ImagemBotãoVoltar" class="imagem-rotacionada" />
</div>
<span class="texto01">
<h6> Sair do Quiz </h6>
</span>
</a>
<br> <br>
<center>
<img src="./imagens/imagensTelaQuiz/Pergunta 1 (1).png" height="70px" width= "400px" alt="ImagemTitulo"/>
<br><br><br><br>
<img src="./imagens/imagensTelaQuiz/Group 21 (1).png" height="50px" width= "520px" alt="ImagemDeInformação"/>
<br><br><br>
<div class="quadrado">
<form>
<label>
<input type="radio" name="opcao" value="opcao1"> Visitar Lugares
</label>
<br>
<label>
<input type="radio" name="opcao" value="opcao2"> Sair com amigos ou familiares
</label>
<br>
<label>
<input type="radio" name="opcao" value="opcao3"> Jogar videogames ou usar as redes sociais
</label>
<br>
<label>
<input type="radio" name="opcao" value="opcao4"> Desesenhar
</label>
<br>
<label>
<input type="radio" name="opcao" value="opcao5"> Práticar Esportes
</label>
</form>
</div>
</center>
<br><br>
<div class="dinocode">
<img src="./imagens/imagensTelaQuiz/Cópia_de_Logo_soluções_em_técnico_de_informática_azul_e_verde_água_-removebg-preview 2.png" height="90px" width= "100px" alt="ImagemTitulo"/>
</div>
<br><br><br><br><br>
<button class="botao" onclick="coletarResposta(0, 'TelaPergunta02.html')">Próxima Pergunta</button>
<br><br><br><br>
<script src="./js/Quiz.js"></script>
</body>
</html>