-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (91 loc) · 2.81 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="es">
<head>
<title>Viajes Tovar</title>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-escale=1, maxium-scale=1, minium-escale=1"/>
<link rel="stylesheet" href="css/fontello.css"/>
<link rel="stylesheet" href="css/estilos.css"/>
</head>
<body>
<header>
<div class="contenedor">
<h1 class="icon-paper-plane-empty">Viajes Tovar</h1>
<input type="checkbox" id="menu-bar"/>
<label class="icon-th-list" for="menu-bar"></label>
<nav class="menu">
<a href="">Inico</a>
<a href="">Conocenos</a>
<a href="">Redes Sociales</a>
<a href="">Reserva</a>
</nav>
</div>
</header>
<main>
<section id="banner">
<img src="img/avion.jpg"/>
<div class="contenedor">
<h2>Conoce el mundo</h2>
<p>¿No sabes a dónde viajar?, nosotros te decimos a donde ir.</p>
<a href="g">Leer más</a>
</div>
</section>
<section id="bienvenidos">
<div class="contenedor">
<h2>BIENVENIDOS A NUESTRO CLUB</h2>
<P>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.
Maecenas porttitor congue massa. Fusce posuere, magna sed pulvinar ultricies,
purus lectus malesuada libero, sit amet commodo magna eros quis urna.</P>
</div>
</section>
<section id="blog">
<h3>Lo ultimo de nuestro blog</h3>
<div class="contenedor">
<article>
<img src="img/el-taj.jpg">
<h4>Conoce templos ancestrales</h4>
</article>
<article>
<img src="img/paris.jpg">
<h4>Visita al viejo continente</h4>
</article>
<article>
<img src="img/machu-pichu.jpg">
<h4>Descubre culturas antiguas</h4>
</article>
</div>
</section>
<section id="info">
<h3>No solo pienses en viajar a otros países, viaja por nuestro país y disfruta de las maravillas que solo nosotros tenemos.</h3>
<div class="contenedor">
<div class="info-viaje">
<img src="img/bellas-artes.jpg">
<h4>Palcio de Bellas Artes</h4>
</div>
<div class="info-viaje">
<img src="img/teotihuacan.jpg">
<h4>Teotihuacan</h4>
</div>
<div class="info-viaje">
<img src="img/huatulco.jpg">
<h4>Huatulco</h4>
</div>
<div class="info-viaje">
<img src="img/puerto-vallarta.jpg">
<h4>Puerto Vallarta</h4>
</div>
</div>
</section>
</main>
<footer>
<div class="contenedor">
<p class="copy">Viajes Tovar © 2018</p>
<div class="sociales">
<a class="icon-facebook-official" href="g"></a>
<a class="icon-twitter" href="g"></a>
<a class="icon-instagram" href="g"></a>
</div>
</div>
</footer>
</body>
</html>