-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathretratos.html
118 lines (92 loc) · 3.21 KB
/
retratos.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="author" content="Genaro Muñoz">
<meta name="description" content="Evaluación Fundamentos de HTML">
<meta name="viewport" content="width=device-width,user-scalable=no">
<title>Comenzando con la Fotografía | Retratos</title>
<link rel="stylesheet" type="text/css" href="css/estilos.css">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
</head>
<body class="cuerpo">
<header>
<div id="titulo">
Comenzando con la fotografia
</div>
<div id="menu">
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="paisajes.html">Paisajes</a></li>
<li><a href="retratos.html" class="active">Retratos</a></li>
</ul>
</nav>
</div>
</header>
<div id="contenido">
<section>
<article id="galeria1">
<figure>
<img src="img/digital.png" class="image1" alt="Digital" width="100%">
</figure>
</article>
<article id="galeria2">
<figure>
<img src="img/conecta.jpg" class="image2" alt="conecta" width="100%">
</figure>
</article>
<article id="galeria3">
<figure>
<img src="img/digital.png" class="image3" alt="Digital" width="100%">
</figure>
</article>
<article id="galeria4">
<figure>
<img src="img/conecta.jpg" class="image4" alt="conecta" width="100%">
</figure>
</article>
<article id="galeria5">
<figure>
<img src="img/digital.png" class="image5" alt="Digital" width="100%">
</figure>
</article>
<article id="galeria6">
<figure>
<img src="img/conecta.jpg" class="image6" alt="conecta" width="100%">
</figure>
</article>
</section>
</div>
<footer>
<div class="piepagina">
<div class="pie1">
<h2> Contacto</h2>
<p>
gmoweb2017@gmail.com
</p>
<p>
Carrera 19 # 40 - 35
</p>
<p>
+57 318 691 2638
</p>
</div>
<div class="pie2">
<h2> Términos</h2>
<p>Las imagenes contenidas aca son propiedad exclusiva del sitio</p>
</div>
<div class="pie3">
<h2>Redes Sociales</h2>
<p><img src="img/facebook.jpg" alt="Facebook" width="8%"> @demageco</p>
<p><img src="img/instagram.jpg" alt="Facebook" width="8%"> @gemunoz</p>
<p><img src="img/whatsapp.jpg" alt="Facebook" width="8%"> 3186912638</p>
</div>
<div class="pie4">
<h2>Derechos</h2>
<p>@Copyright 2017, Genaro Muñoz Obregón</p>
</div>
</div>
</footer>
</body>
</html>