-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
166 lines (158 loc) · 6.15 KB
/
index.html
File metadata and controls
166 lines (158 loc) · 6.15 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
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
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="styles/index.css">
<title>Ticketer</title>
</head>
<body>
<nav id="principalNav">
<div id="menuToggle">
<input type="checkbox" />
<span></span>
<span></span>
<span></span>
<ul id="menu">
<a href="#">
<li>Home</li>
</a>
<a href="#">
<li>About</li>
</a>
<a href="#">
<li>Info</li>
</a>
</ul>
</div>
<h1>Ticketer</h1>
<a href="" id="btnPerfil">
<img src="img/cara.png" alt="avatar">
<p>Chris L.</p>
</a>
</nav>
<div id="precontenido"></div>
<form action="Submit" class="cajaBuscar">
<input type="text" placeholder="Busca eventos..." name="search">
<button type="button"></button>
</form>
<div id="contenedorEventos">
<div id="eventosDestacados">
<h2>Eventos destacados</h2>
<div id="cajaDestacados">
<a href="./evento.html">
<div class="evento destacado">
<img src="./img/festival-low.png" alt="evento">
<h3>Low festival Benidorm 2018</h3>
<p class="descripcion">Low Festival se prepara para celebrar su décimo aniversario en 2018.</p>
<div class="cajaInformacion">
<address>Benidorm</address>
<div class="cuadroCompra">
<p>8/6/18</p>
<button type="button">Desde:
<span class="precio">25€</span>
</button>
</div>
</div>
</div>
</a>
<a href="./evento.html">
<div class="evento destacado">
<img src="./img/concierto-belako.jpg" alt="evento">
<h3>Belako en concierto</h3>
<p class="descripcion">Belako vuelve con un disco nuevo, más fuerte que nunca.</p>
<div class="cajaInformacion">
<address>Almusafes</address>
<div class="cuadroCompra">
<p>5/12/19</p>
<button type="button">Desde:
<span class="precio">40€</span>
</button>
</div>
</div>
</div>
</a>
</div>
</div>
<div id="eventosRecomendados">
<h2>Eventos recomendados</h2>
<div id="cajaRecomendados">
<a href="./evento.html" class="evento">
<img src="./img/tropetera.jpg" alt="evento">
<h4>Trompetera Festival</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/concierto-belako.jpg" alt="evento">
<h4>Belako en concierto</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/vintagetrouble.jpg" alt="evento">
<h4>Vintage trouble en concierto</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/tropetera.jpg" alt="evento">
<h4>Trompetera Festival</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/concierto-belako.jpg" alt="evento">
<h4>Belako en concierto</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/tropetera.jpg" alt="evento">
<h4>Trompetera Festival</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/tropetera.jpg" alt="evento">
<h4>Trompetera Festival</h4>
<button type="button">Ver</button>
</a>
<a href="./evento.html" class="evento">
<img src="./img/vintagetrouble.jpg" alt="evento">
<h4>Vintage trouble en concierto</h4>
<button type="button">Ver</button>
</a>
</div>
</div>
</div>
<div id="cajaAddEvento">
<p class="tituloAnuncio">¿Organizas eventos?</p>
<p class="subtituloAnuncio">Crea un evento en Ticketer</p>
<button type="button">Crear</button>
</div>
<hr>
<footer>
<div id="cajaCategorias">
<p>Conciertos</p>
<p>Festivales</p>
<p>Teatro</p>
<p>Exposiciones</p>
<p>Artes escénicas</p>
<p>Profesional</p>
</div>
<div id="cajaIdiomas">
<label for="idioma">Idiomas</label>
<select name="idioma" id="idioma">
<option value="en">English</option>
<option value="es" selected="selected">Español</option>
<option value="fr">Français</option>
</select>
</div>
<div id="cajaSecciones">
<ul>
<li>Sobre nosotros</li>
<li>Vender entradas</li>
<li>Redes sociales</li>
<li>Contacto</li>
<li>Ayuda</li>
</ul>
</div>
</footer>
</body>
</html>