-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
67 lines (65 loc) · 1.98 KB
/
index.html
File metadata and controls
67 lines (65 loc) · 1.98 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>Comenzando con la Fotografia</title>
<link href="https://fonts.googleapis.com/css?family=Dancing+Script" rel="stylesheet">
<link rel="stylesheet" href="css/estilos.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div id="contenido">
<header>
<div id="Encabezado">
<div id="HeaderCon">
<h1>Comenzando con la fotografia</h1>
</div>
<div id="HeaderMenu">
<ul>
<li><a class="pagActual" href="index.html">Inicio</a></li>
<li><a href="paisajes.html">Paisajes</a></li>
<li><a href="retratos.html">Retratos</a></li>
</ul>
</div>
</div>
</header>
<section id="principal">
<article>
<img src="imagenes\DSC05045.JPG" class="imagenPrincipal">
</artcle>
</section>
<section id="secundarias">
<article id="imagenSec1">
<img src="imagenes\DSC05566.jpg" class="imagenSecundaria">
<p><a href="paisajes.html">Paisajes</a></p>
</article>
<article id="imagenSec2">
<img src="imagenes\Rojo.JPG" class="imagenSecundaria">
<p><a href="retratos.html">Retratos</a></p>
</article>
</section>
<footer>
<div>
<h3>Contacto</h3>
<p>Email: <a href="mailto:alguncorreo@sitio.com">alguncorreo@sitio.com</a></p>
<p>Teléfono: +52 123 456 7890</p>
<p>Dirección: Calle falsa 123, Col. Centro CP. 649090, Monterrey, Nuevo León</p>
</div>
<div>
<h3>Términos</h3>
<p>Conoce terminos y condiciones</p>
</div>
<div>
<h3>Redes Sociales</h3>
<p>Facebook: <a href="facebook.com/FotografoQuintos">FotografoQuintos</a></p>
<p>Twitter: <a href="twitter.com/FotografoQuintos">@FotografoQuintos</a> </p>
<p>Youtube: <a href="youtube.com/FotografoQuintos">FotografoQuintos</a></p>
</div>
<div>
<h3>Derechos</h3>
<p>® Derechos reservados 2017</p>
</div>
</footer>
</div>
</body>
</html>