-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (57 loc) · 1.64 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
60
61
62
63
64
65
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Mi blog</title>
<link href='https://fonts.googleapis.com/css?family=Lato:400,300,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!--comentario-->
<header class="header-master">
<nav>
<ul class="menu">
<li><a href="#">Home</a></li>
<li><a href="#">Acerca de</a></li>
<li><a href="#">Contacto</a></li>
<li><a href="#">RSS</a></li>
</ul>
</nav>
<h1 class="main-title">
<figure class="logo">
<img src="img/logo_hipster.jpg" alt="Logo del blog">
</figure>
</h1>
</header>
<section class="posts">
<div class="wrapper">
<article class="post">
<header>
<div class="w-date">
<span class="date">Miercoles 18 de Noviembre 2015.</span>
</div>
<h3 class="title">El titulo del post</h3>
</header>
<figure class="img-post">
<img src="img/mountains.jpeg" alt="La imagen del post">
</figure>
<div class="content">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Voluptatem magni qui laboriosam similique. Ea accusantium delectus ullam totam, nostrum impedit sequi iusto quo accusamus animi aliquid omnis aliquam dolore vel.</p>
<a href="#" class="button">Continuar leyendo</a>
</div>
</article>
</div>
</section>
<footer>
<div class="footer-wrapper">
<ul class="social-menu">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Instagram</a></li>
</ul>
<span class="copy">Desarrollador por mi c:</span>
</div>
</footer>
</body>
</html>