forked from AlvaroHansOrellana/QuizProject
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathquiz.html
More file actions
52 lines (40 loc) · 1.75 KB
/
Copy pathquiz.html
File metadata and controls
52 lines (40 loc) · 1.75 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Preguntas</title>
<link rel="stylesheet" href="./style.css">
<!--html para librería de gráficas-->
<link rel="stylesheet" href="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.css">
<script src="//cdn.jsdelivr.net/chartist.js/latest/chartist.min.js"></script>
</head>
<body class="colorfondo">
<main>
<section class="preguntas">
<section id="quiz-container">
<h2 id="pregunta-texto">Cargando pregunta...</h2>
<ul id="opciones-lista"></ul>
</section>
<button id="siguiente-pregunta" style="display: none;">Siguiente Pregunta</button>
<section id="botonera">
<button id="jugarAgain"><span>Jugar otra vez?</span></button>
<button id="guardarPartida"><span>Guardar Partida</span></button>
<button id="estadisticas"><span>Estadísticas</span></button>
<p><a href="index.html">Pantalla de título</a></p>
</section>
<section id="graficaContainer">
<div class="ct-chart"></div>
</section>
</main>
<footer>
<!-- The core Firebase JS SDK is always required and must be listed first -->
<div class="ct-chart"></div>
<p>© Music Quiz 2024</p>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-app.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-firestore.js"></script>
<script src="https://www.gstatic.com/firebasejs/8.7.1/firebase-auth.js"></script>
</footer>
<script src="./script.js"></script>
</body>
</html>