-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (30 loc) · 944 Bytes
/
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="UTF-8">
<title>Laboratrivia</title>
<meta name = "viewport" content = "width = device-width, user-scalable = no, initial-scale = 1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- CABECERA -->
<header>
<h1> 🌎 LABORATRIVIA 🌎 </h1>
<h3 id="bienvenida"> BIENVENID@ </h3>
<!-- Este elemento nos permite agregar el nombre del usuario -->
<hr/>
</header>
<!-- RESULTADOS -->
<section>
<div id="contenedorPrincipal">
<!-- Nos permite ver el marcador -->
<h3>RESULTADOS</h3>
<div id="respuestasCorrectas" class="marcador">
</div><!-- Se visualizan las respuestas correctas -->
<div id="respuestasIncorrectas" class="marcador">
</div><!-- Nos permite visualizar las respuestas incorrectas -->
</div>
</section>
<script type="text/javascript" src="app.js"></script>
</body>
</html>