-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPlantilla.html
44 lines (33 loc) · 1.5 KB
/
Plantilla.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
<!-- Datos Personales : Daniel Uria Edroso UO282813 -->
<!DOCTYPE HTML>
<html lang="es">
<head>
<!-- Datos que describen el documento -->
<meta charset="UTF-8" />
<title>SEW.P1</title>
<meta name="author" content="Daniel Uria" />
<meta name="description" content="Contenido Plantilla" />
<meta name="keywords" content="Plantilla" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="estilo/estilo.css" />
<link rel="icon" href="multimedia/imagenes/favicon.ico" />
<link rel="stylesheet" type="text/css" href="estilo/layout.css" />
</head>
<body>
<!-- Datos con el contenido que aparece en el navegador -->
<header>
<h1> EscritorioVirtual </h1>
<nav>
<a href="index.html" accesskey="I" tabindex="1"> Indice </a>
<a href="sobremi.html" accesskey="S" tabindex="2"> Sobre mi </a>
<a href="noticias.html" accesskey="N" tabindex="3"> Noticias </a>
<a href="agenda.html" accesskey="A" tabindex="4"> Agenda </a>
<a href="meteorologia.html" accesskey="M" tabindex="5"> Meteorologia </a>
<a href="viajes.php" accesskey="V" tabindex="6"> Viajes </a>
<a href="juegos.html" accesskey="J" tabindex="7"> Juegos </a>
</nav>
</header>
<p> Este es un sitio web adaptable y accesible
desarrollado cumpliendo los estándares HTML5, CSS3. </p>
</body>
</html>