-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcrucigrama.html
62 lines (47 loc) · 1.97 KB
/
crucigrama.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>Escritorio virtual: Juegos</title>
<meta name ="author" content ="Daniel Flores Lopez" />
<meta name ="description" content ="documento con juegos interactivos para el usuario" />
<meta name ="keywords" content ="juego, ocio, videojuego" />
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<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/crucigrama.css" />
<link rel="icon" href="multimedia/imagenes/favicon.ico"/>
</head>
<body>
<header>
<!-- Datos con el contenido que aparece en el navegador -->
<h1>Escritorio virtual</h1>
<nav>
<a tabindex="1" accesskey="I" href="index.html">Inicio</a>
<a tabindex="2" accesskey="S" href="sobremi.html">Sobre mi</a>
<a tabindex="3" accesskey="N" href="noticias.html">Noticias</a>
<a tabindex="4" accesskey="A" href="agenda.html">Agenda</a>
<a tabindex="5" accesskey="M" href="meteorologia.html">Meteorología</a>
<a tabindex="6" accesskey="V" href="viajes.html">Viajes</a>
<a tabindex="7" accesskey="J" href="juegos.html">Juegos</a>
</nav>
</header>
<section>
<h2> Juegos completados</h2>
<ul>
<li><a href="memoria.html">Juego de memoria</a></li>
<li><a href="sudoku.html">Sudoku</a></li>
<li><a href="crucigrama.html">Crucigrama</a></li>
</ul>
</section>
<main>
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
<script src="js/crucigrama.js"></script>
<script>
var crucigrama = new Crucigrama();
crucigrama.paintMathWord();
</script>
</main>
</body>
</html>