-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
37 lines (35 loc) · 811 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>BLOG</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Cabecera -->
<header>
<h1>Mi Blog </h1>
</header>
<!-- Contenido -->
<section>
<b>Libros</b>
<ul>
<li> Clean Code by Robert C. Martin</li>
<li> DevOps for Developers by Michael Htterman</li>
<li> Using Docker by Adrian Mouat </li>
</ul>
</section>
<section>
<b>Películas</b>
<ul>
<li>nombre: la salchicha peleona, autor: Dennis Dugan </li>
<li>Nombre: karate a muerte en torremolinos , autor: Pedro Temboury</li>
<li>Nombre: Miedo Jass con Las Vegas , autor: Terry Gilliam</li>
</ul>
</section>
<!-- Pie de pagina -->
<footer>
(c) Evolución y Mantenimiento Software
</footer>
</body>
</html>