-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
80 lines (80 loc) · 2.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html>
<head>
<title>Comenzando con la Fotografía</title>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<link rel="stylesheet" href="css/estilos.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta charset="utf-8">
</head>
<body id="body">
<header>
<div id="container-header">
<div id="siteName">
<h1>Comenzando con la Fotografía</h1>
</div>
<nav id="navBar">
<ul>
<li><a href="#body">Inicio</a></li>
<li><a href="paisajes.html">Paisajes</a></li>
<li><a href="retratos.html">Retratos</a></li>
</ul>
</nav>
</div>
</header>
<div id="container-content">
<section id="content">
<div class="bloque1">
<img src="img/landscape1.jpg" alt="" >
</div>
<div class="bloque2">
<figure>
<a href="paisajes.html">
<img src="img/landscape2.jpg" id="secondImage">
</a>
<figcaption>Paisajes</figcaption>
</figure>
</div>
<div class="bloque3">
<figure>
<a href="retratos.html">
<img src="img/portait1.jpg" alt="" id="thirdImage">
</a>
<figcaption>Retratos</figcaption>
</figure>
</div>
</section>
</div>
<footer>
<div class="items">
<div class="item">
<h2>Contacto</h2>
<ul class="noDots">
<li>info@fotografia.com</li>
<li>Condell 1872, Santiago</li>
<li>Teléfono: +56997882233</li>
</ul>
</div>
<div class="item">
<h2>Términos</h2>
<p>Conoce nuestros términos y condiciones..</p>
</div>
<div class="item">
<h2>Redes Sociales</h2>
<ul class="noDots">
<li><img src="img/facebook.png" width="24" height="24" alt="">ComenzandoFotografia</li>
<li><img src="img/instagram.png" width="24" height="24"alt="">@ComenzandoFotografia</li>
<li><img src="img/twitter.png" width="24" height="24"alt="">@ComenzandoFotografia</li>
</ul>
</div>
<div class="item">
<h2>Derechos</h2>
<ul class="noDots">
<li>Eliecer Arteaga</li>
<li>© 2018</li>
</ul>
</div>
</div>
</footer>
</body>
</html>