-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFacil1.html
76 lines (68 loc) · 3.07 KB
/
Facil1.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Trivia</title>
<link rel="stylesheet" href="cuadros1.css">
</head>
<body onload="start()">
<header>
<h1><u>TRIVIANIME</u></h1>
</header>
<nav>
<ul>
<li>
<a href="Inicio.html">Inicio</a>
</li>
<li>
<a href="index.html">Juego</a>
</li>
<li>
<a href="Recomendaciones.html">Recomendaciones</a>
</li>
<li>
<a href="TopAnime2.0.html">Página Web</a>
</li>
<li>
<a href="Iniciosesion.html">Formulario</a>
</li>
</ul>
</nav>
<section>
<main>
<div class="cuadrito">
<table>
<thead>
<tr>
<th colspan="2">
<h1 style="font-size: 38px"><span ><strong>NEW GAME ANIME</span></strong></h1>
</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p><b><u>Nivel Fácil</u></b></p>
<div class="chronometer">
<div id="screen">00 : 00 : 00 : 00</div>
</div>
</td>
</tr>
<tr>
<td>
<h3><img class="izquierda" src="https://elcomercio.pe/resizer/C9MkP1WQhXxUSED1oNtFtNSs0G0=/1200x900/smart/filters:format(jpeg):quality(75)/cloudfront-us-east-1.images.arcpublishing.com/elcomercio/ZRNBMG3HVBAHPGAZAUJGBJJ7HU.jpg">¿Cuántas esferas del dragon existen?</h3>
<button id="op1" class ="incorrecta" onclick="calcularPuntaje('Facil2.html','incorrecta')">Cinco</button>
<button id="op2" class="correcta" onclick="calcularPuntaje('Facil2.html','correcta')">Siete</button>
<button id="op3" class="incorrecta" onclick="calcularPuntaje('Facil2.html','incorrecta')">Cuatro</button>
<button id="op4" class="incorrecta" onclick="calcularPuntaje('Facil2.html','incorrecta')">Nueve</button>
<button id="op5" class="incorrecta" onclick="calcularPuntaje('Facil2.html','incorrecta')">Diez</button>
</td>
</tr>
</tbody>
</table>
</div>
</main>
</section>
<script src="cuadro1.js"></script>
</body>
</html>