-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetalles.html
65 lines (65 loc) · 2.89 KB
/
detalles.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Paramount + - Como llegar</title>
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400&family=Roboto+Condensed:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/default.css"> <!-- Estilos generales -->
<link rel="stylesheet" href="styles/detalles.css">
</head>
<body>
<header>
<nav class="navMenu">
<img src="static/images/paramountLogo.png" alt="logo paramount plus" class="mainLogo">
<ul class="navList">
<li><a href="index.html">HOME</a></li>
<li><a href="lapelicula.html">BLADE RUNNER 2049</a></li>
<li><a href="detalles.html" class="paginaActual">EVENTO</a></li>
<li><a href="nosotros.html">NOSOTROS</a></li>
</ul>
<a href="formulario.html" class="navEntradas">ENTRADAS</a>
</nav>
<h1 class="gris">TE ESPERAMOS</h1>
</header>
<main>
<section id="mapa">
<iframe src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d26272.634466435826!2d-58.368416!3d-34.602156!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xfd34b93fba734a98!2sLuna%20Park!5e0!3m2!1ses!2sus!4v1632792563905!5m2!1ses!2sus" loading="lazy"></iframe>
<p>Stadium Luna Park | Av. Madero 420 (C1106ABE) CABA – Argentina</p>
</section>
<section id="transporte">
<h2>CÓMO LLEGAR</h2>
<div>
<h4>SUBTE / METRO </h4>
<ul>
<li>Linea B | Leandro N. Alem</li>
<li>Linea E | Correo Central</li>
</ul>
</div>
<div>
<h4> COLECTIVO / BUESES</h4>
<ul>
<li>4,6,7,20,22,23,26,28,29,33,50,56 </li>
<li>61,62,64,74,91,93,99,105,109,111,126,129,130,140,</li>
<li>143,146,152,159,180,195</li>
</ul>
</div>
<div>
<h4>COMBI / MINIBUS</h4>
<ul>
<li>Terminal Madero, frente al estadio, abierta de lunes a domingo de 7 a 23 hs</li>
</ul>
</div>
</section>
</main>
<footer>
<div id="gridFooter">
<span class="rubik">Copyright © 2021 Rubik SRL</span><span>All Rights Reserved</span>
</div>
</footer>
</body>
</html>