forked from vgarri/QuizProject
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprofile.html
More file actions
39 lines (29 loc) · 959 Bytes
/
profile.html
File metadata and controls
39 lines (29 loc) · 959 Bytes
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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./style.css">
<title>Music Quiz</title>
</head>
<body >
<header>
<h1 class="titulo">Perfil Usuario</h1>
</header>
<main class="profilecolum">
<section id="graficaContainer">
<div class="ct-chart"></div>
</section>
<div class="texto-inicio">¿Empezamos el quiz?</div>
<a href="quiz.html">
<button class="boton-start">Start</button>
</a>
</main>
<footer>
<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>
</body>
</html>