-
Notifications
You must be signed in to change notification settings - Fork 0
/
preguntas.html
44 lines (41 loc) · 1.47 KB
/
preguntas.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSS -->
<link rel="stylesheet" href="css/style.css">
<title>Cuanto Sabes de Messi</title>
</head>
<body>
<!-- Further code here -->
<a class="logo" href="index.html">
<img src="images/logo.svg" alt="Homepage">
</a>
<div class="start-screen">
<button id="start-button">Arranca</button>
</div>
<div id="display-container">
<div class="header">
<div class="number-of-count">
<span class="number-of-question">1 de 3 Preguntas</span>
</div>
<div class="timer-div">
<img src="https://uxwing.com/wp-content/themes/uxwing/download/time-and-date/stopwatch-icon.png"
width="20px" />
<span class="time-left">20s</span>
</div>
</div>
<div id="container">
<!-- questions and options will be displayed here -->
</div>
<button id="next-button">Siguiente</button>
</div>
<div class="score-container hide">
<div id="user-score">Demo Score</div>
<button id="restart">Otra Vez</button>
</div>
<script src="js/script.js"></script>
</body>
</html>