-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (44 loc) · 2.19 KB
/
index.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
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>Escritorio Virtual</title>
<!-- Autor -->
<meta name ="author" content ="Natalia Fernández Riego" />
<!-- Descripción del contenido -->
<meta name ="description" content ="Este sitio web trata sobre un Escritorio Virtual, pudiendo acceder desde él a distintos sitios" />
<!-- Palabras claves -->
<meta name ="keywords" content ="indice" />
<!-- Ventana gráfica -->
<meta name ="viewport" content ="width=device-width, initial-scale=1.0" />
<!-- Hoja de estilo -->
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
<!-- Favicon -->
<link rel="icon" href="multimedia/imagenes/favicon.ico" type="image/x-icon">
<!-- Referencia a JQuery (opción minificada) -->
<script src="https://code.jquery.com/jquery-3.7.1.min.js" integrity="sha256-/JqT3SQfawRcv/BIHPThkBvs0OEvtFFmqPF/lYI/Cxo=" crossorigin="anonymous"></script>
<script src="js/fondo.js"></script>
</head>
<!--Aquí se añade un atributo "style" al cargar la página. Permitido por la manera en la que se pone la imagen de fondo. -->
<body>
<header>
<h1>Escritorio Virtual</h1>
<!-- Menú de navegación -->
<nav>
<a title="Indice" accesskey="I" tabindex="1" href="index.html">Indice</a>
<a title="Sobre mi" accesskey="S" tabindex="2" href="sobremi.html">Sobre mi</a>
<a title="Noticias" accesskey="N" tabindex="3" href="noticias.html">Noticias</a>
<a title="Agenda" accesskey="A" tabindex="4" href="agenda.html">Agenda</a>
<a title="Meteorologia" accesskey="M" tabindex="5" href="meteorologia.html">Meteorología</a>
<a title="Viajes" accesskey="V" tabindex="6" href="viajes.php">Viajes</a>
<a title="Juegos" accesskey="J" tabindex="7" href="juegos.html">Juegos</a>
</nav>
</header>
<h2>Indice</h2>
<section>
<h3>Índice del Escritorio Virtual</h3>
</section>
</body>
</html>