-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquizz.html
85 lines (67 loc) · 3.03 KB
/
quizz.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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Trivia Laboratoria</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<script src="script.js"></script>
<center>
<h2>Trivia Laboratoria</h2>
<section id="quiz">
<!-- Question 01: Texto -->
<p class="questionText">
<b>Pregunta N°1: </b><br>
¿Cuál es el nivel de satisfacción de las egresadas al terminar el bootcamp? <br>
</p>
<!-- Question 01: Opciones -->
<p class="optionText">
<input type="radio" id="optionOne" name="questionOne" value=1><label class="optionsText"> 99%</label> <br>
<input type="radio" id="optionTwo" name="questionOne" value=0><label class="optionsText"> 89%</label> <br>
<input type="radio" id="optionThree" name="questionOne" value=0> <label class="optionsText">79%</label>
</p>
<!-- Question 02: Pregunta -->
<p class="questionText">
<b>Pregunta N°2: </b><br>
¿Cúal es el porcentaje de egresadas que lidera un equipo? <br>
</p>
<!-- Question 02: Opciones -->
<p class="optionText">
<input type="radio" id="optionFour" name="questionTwo" value=0><label class="optionsText">5%</label><br>
<input type="radio" id="optionFive" name="questionTwo" value=1><label class="optionsText">21%</label><br>
<input type="radio" id="optionSix" name="questionTwo" value=0><label class="optionsText">10%</label>
</p>
<!-- Question 03: Pregunta -->
<p class="questionText">
<b>Pregunta N°3: </b><br>
¿En qué paises está Laboratoria? <br>
</p>
<!-- Question 03: Opciones -->
<p class="optionText">
<input type="radio" id="optionSeven" name="questionThree" value=0><label class="optionsText">Bélgica, Italia, Francia, Alemania</label><br>
<input type="radio" id="optionEight" name="questionThree" value=0><label class="optionsText">China, Japón, Estados Unidos</label><br>
<input type="radio" id="optionNine" name="questionThree" value=1><label class="optionsText">México, Colombia, Perú, Ecuador, Chile</label>
</p>
<!-- Botón Enviar respuesta -->
<button id="sendAnswers" onclick="clickSendAnswers()"> <b> ENVIAR RESPUESTAS </b></button>
</section> <br> <br>
<!-- Resultados (Puntaje y Mensaje) -->
<section class=results>
<label id="points"></label> <br>
<label id="answer"></label>
</section><br> <br>
<!--Botón reintentar -->
<button id="tryAgain"
onclick="clicktryAgain()"><b>REINTENTAR</b></button>
<br><br>
</center>
<!--
This script places a badge on your repl's full-browser view back to your repl's cover
page. Try various colors for the theme: dark, light, red, orange, yellow, lime, green,
teal, blue, blurple, magenta, pink!
-->
<script src="https://replit.com/public/js/replit-badge-v2.js" theme="dark" position="bottom-right"></script>
</body>
</html>