forked from platzi/Curso-de-HTML5-y-CSS3---Octubre-2015
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (57 loc) · 2.2 KB
/
index.html
File metadata and controls
67 lines (57 loc) · 2.2 KB
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
66
67
<!DOCTYPE html>
<html>
<head>
<title>Gatos y Perros del Internet</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700" rel="stylesheet" type="text/css">
<meta charset="UTF-8" />
</head>
<body>
<header>
<div class="container">
<nav class="row between middle">
<div class="col-4">
<a href="index.html">
<img src="assets/logo.svg"/>
</a>
</div>
<div class="col-3 end">
<ul class="row between">
<li class="col">
<a href="gatos.html" class="layout_a">Gatos</a>
</li>
<li class="col">
<a href="perros.html" class="layout_a">Perros</a>
</li>
<li class="col">
<a href="acerca.html" class="layout_a">Acerca</a>
</li>
</ul>
</div>
</nav>
</div>
</header>
<section class="home full-height">
<div class="container">
<div class="row center">
<h1 class="col-10">Aprende sobre las mascotas mas populares de internet</h1>
<div class="col-3 boton">
<a href="gatos.html" class="boton_a">Gatos</a>
</div>
<div class="col-3 boton">
<a href="perros.html" class="boton_a">Perros</a>
</div>
</div>
</div>
</section>
<footer>
<div class="container">
<div class="row">
<div class="col-12">
2105 - <a href="http://twitter.com/marulango" target="_blank" class="layout_a">Marcela Lango</a>
</div>
</div>
</div>
</footer>
</body>
</html>