-
Notifications
You must be signed in to change notification settings - Fork 0
/
memoria.html
58 lines (57 loc) · 2.16 KB
/
memoria.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<meta name ="author" content="Iván Vega García"/>
<meta name ="description" content ="Sección de juegos en navegador con temática de F1" />
<meta name ="keywords" content ="F1, coches, carreras, circuitos, pilotos, juegos, videojuegos" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/x-icon" href="multimedia/imagenes/f1DesktopIcon_1.png" />
<title>F1Desktop Juegos: Juego de memoria</title>
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<link rel="stylesheet" type="text/css" href="estilo/memoria.css" />
<script src="js/memoria.js"></script>
<script>
memory = new Memoria();
</script>
</head>
<body>
<!-- Datos con el contenido que aparece en el navegador -->
<header>
<h1><a href = "index.html" title = "inicio_h1">F1Desktop</a></h1>
<nav>
<a href = "index.html" title = "inicio">Inicio</a>
<a href = "piloto.html" title = "piloto">Piloto</a>
<a href = "noticias.html" title = "noticias">Noticias</a>
<a href = "calendario.html" title = "calendario">Calendario</a>
<a href = "meteorologia.html" title = "meteorologia">Meteorología</a>
<a href = "circuito.html" title = "circuito">Circuito</a>
<a href = "viajes.html" title = "viajes">Viajes</a>
<a href = "juegos.html" class="active" title = "juegos">Juegos</a>
</nav>
</header>
<p> Estás en:
<a href="index.html" title="inicio_migas">Inicio</a>
>>
<a href="juegos.html" title="segundo_migas">Juegos</a>
>> Juego de memoria</p>
<main>
<h2>Selección de juegos de F1 para tu navegador</h2>
<ul>
<li><a href = "memoria.html" title = "memoria">Juego de memoria</a></li>
<li><a href = "semaforo.html" title = "semaforo">Semáforo de reacción</a></li>
</ul>
<section>
<h3>Juego de memoria</h3>
<script>
memory.createElements();
memory.addEventListeners();
</script>
</section>
</main>
<footer>
</footer>
</body>
</html>