-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (79 loc) · 3.16 KB
/
index.html
File metadata and controls
82 lines (79 loc) · 3.16 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inicio</title>
<link rel="icon" href="imagenes/T.png">
<link rel="stylesheet" href="basic.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=New+Rocker&display=swap"
rel="stylesheet">
<script src="temas.js" defer></script>
</head>
<body>
<header>
<h1>Tarathat</h1>
<p>El juego de cartas</p>
</header>
<nav>
<ol>
<li class="botonmenu" id="seleccionado">
<a href="index.html">Inicio</a>
</li>
<li class="botonmenu">
<a href="juego.html">Juego</a>
</li>
<li class="botonmenu">
<a href="puntuacion.html">Ultima Puntuación</a>
</li>
<div id="skin">
<button id="skinIzq">«</button>
<p>Tema</p>
<button id="skinDer">»</button>
</div>
</ol>
</nav>
<main>
<div class="caja">
<h2>¡Bienvenido a la taberna de Tarathat!</h2>
<p>
Viajero, has llegado a un lugar donde la astucia y la
memoria son clave.
Este es un desafío de emparejar cartas, inspirado en el
mundo de Tarathat,
donde se forjan grandes leyendas.
<br><br>
Demuestra tu destreza, pero antes, escucha bien las
reglas...
</p>
<h3>Las Reglas del Desafío</h3>
<p>
Elige cuántas parejas enfrentar (mínimo 5) y cuántas
oportunidades tendrás (máximo 5).
A mayor dificultad, mayor será la recompensa: si completas
el tablero, tu multiplicador de puntos aumentará.
<br><br>
Al inicio, las cartas se revelarán brevemente antes de
quedar ocultas.
Dispondrás de un tiempo acorde a la dificultad elegida. Si
no logras completar el desafío,
conservarás tus puntos, pero perderás la bonificación.
Además, los aciertos consecutivos aumentarán tu
multiplicador de racha.
<br><br>
Pero cuidado… el tabernero tiene buen ojo para los tramposos
y no será indulgente.
¿Aceptas el reto?
</p>
<a href="juego.html"><button>¡Acepto!</button></a>
</div>
</main>
<footer>
<h2>Ilustraciones por Víctor Peláez. Texturas y dorsos de Blizzard
Entertainment.</h2>
</footer>
</body>
</html>