-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathblog.html
32 lines (31 loc) · 1.18 KB
/
blog.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
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8"/>
<title>Prototipo de un blog</title>
</head>
<body><!--Estructura de documentos (énfasis distinto sobreel mismo tipo de elemento -->
<header>
<h1>El Ave fénix: noticias de desarrollo</h1> <p><a href="index.html">Inicio</a>-<a href="noticias.html">Noticias</a>-<a href="blog.html">Blog</a>-<a href="miscelanea.html">Forums</a>
</p>
<p>Última modificación:<time>Verano 2013</time>
</p>
<nav>
<h1>Navegación (elemento h1 más pequeño)</h1>
<ul>
<li><a href="articulos.html">Índice de artículos</a></li>
<li><a href="actual.html">Noticias por temas</a></li>
<li><a href="trucos.html">Sugerencias del lector</a></li></ul>
</nav>
</header>
<article>
<p>Reservado para el contenido del artículo</p>
</article>
<footer>
<p>Copyright © 2017 - cursosdedesarrollo.com</p>
<p>
<a href="about.html">About</a>-<a href="politicas.html">Privacy Policy</a>-<a href="contacto.html">Contact Us</a>
</p>
</footer>
</body>
</html>