-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevento.html
90 lines (64 loc) · 3.02 KB
/
evento.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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="utf-8">
<title>evento</title>
<link rel="stylesheet" href="assets\estilo\main.css">
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=Lato:100,300,400">
</head>
<body>
<!--header-->
<header class="primary-header container group">
<h1 class="logo">
<a href = "index.html">conferencia de <br>programacion </a>
</h1>
<h3 class="tagline"> Este 24 y 26 de Agosto en Buenos Aires </h3>
<nav class="nav primary-nav">
<ul>
<li><a href="index.html">inicio</a></li><!--
--><li><a href="oradores.html">oradores</a></li><!--
--><li><a href="calendario.html">calendario</a></li><!--
--><li><a href="evento.html">evento</a></li><!--
--><li><a href="registro.html">Registro</a></li>
</ul>
</nav>
</header>
<section class="row-alt">
<section class="lead container">
<h1>Evento</h1>
</section>
</section>
<section class="row">
<div class="grid">
<section class="teatro-evento">
<div class="col-1-3">
<h2>Teatro Colon</h2>
<p>Cerrito 628 <br> C1010 CABA</p>
<p><a href="https://teatrocolon.org.ar/es">https://teatrocolon.org.ar/es</a></p>
</div><!--
--><iframe class="evento-mapa col-2-3" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d210183.89857958804!2d-58.523154283593755!3d-34.60104059999999!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95bccac630121623%3A0x53386f2ac88991a9!2sTeatro%20Col%C3%B3n!5e0!3m2!1ses!2sar!4v1661122573109!5m2!1ses!2sar" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section class="hotel-evento">
<div class="col-1-3">
<h2>Embajador Hotel</h2>
<p>Carlos Pellegrini 1185 <br> C1009ABW CABA</p>
<p><a href="http://www.embajadorhotel.com.ar/">embajadorhotel.com.ar/</a></p>
</div><!--
--><iframe class="evento-mapa col-2-3" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d13136.872025976741!2d-58.39101257245396!3d-34.598648424407514!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x95bccab70d63dbdd%3A0x1897a6bc21ddb1d7!2sEmbajador%20Hotel!5e0!3m2!1ses!2sar!4v1661122916639!5m2!1ses!2sar" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
</div>
</section>
<footer class="primary-footer container group">
<small>© Jonathan Catriel Quintana</small>
<nav class="nav">
<ul>
<li><a href="index.html">inicio</a></li><!--
--><li><a href="oradores.html">oradores</a></li><!--
--><li><a href="calendario.html">calendario</a></li><!--
--><li><a href="evento.html">evento</a></li><!--
--><li><a href="registro.html">Registro</a></li>
</ul>
</nav>
</footer>
</body>
</html>