-
Notifications
You must be signed in to change notification settings - Fork 0
/
venue.html
63 lines (62 loc) · 3 KB
/
venue.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=
, initial-scale=1.0">
<title>Venue</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<span class="logo capital-case">Style</span><span class="logo" > Conference </span>
<div>
<span class="time hightlight-text">
<time datetime="">Aug 24-26</time>
<span>Chicago - IL</span>
</span>
<navc class="mainMenue capital-case">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./speakers.html">Speakers</a></li>
<li><a href="./schedule.html">schedule</a></li>
<li><a href="./venue.html">Venue</a></li>
<li><a href="./register.html">Register</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section>
<h1>Venue</h1>
<p>The conference is held at the chicago Thertre, a beautifull historical landmark. the conference hotel, Hotel Chicago, is a short walk away down state street.</p>
</section>
<section class="adrress">
<h2>Chicago Theatre</h2>
<p>175 N state St<br>Chicago,IL 60601</p>
<p><a href="thechicagotheatre.com" alt="theatre-website">thechicagotheatre.com</a><br>
(312)462-6300</p>
<iframe class="map" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d189991.3733435444!2d-87.53286739152206!3d41.92262997340751!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880e2ca55810a493%3A0x4700ddf60fcbfad6!2z16rXmdeQ15jXqNeV158g16nXmden15LXlQ!5e0!3m2!1siw!2sil!4v1669640616234!5m2!1siw!2sil" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
<section class="adress">
<h2>Hotel Chicago</h2>
<p>333 N dearborn St<br>Chicago,IL 60654</p>
<p><a href="thehotelchicago.com" alt="hotel-website">thehotelchicago.com</a></p>
<iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d189991.88031898724!2d-87.53355366422134!3d41.92245971110828!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x880e2cae21a12625%3A0x277f22d4b64d5732!2sHotel%20Chicago%20Downtown%2C%20Autograph%20Collection!5e0!3m2!1siw!2sil!4v1669644035358!5m2!1siw!2sil" width="400" height="300" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade"></iframe>
</section>
</main>
<footer>
<small class="hightlight-text"> © style conference </small>
<nav class = "mainMenue">
<ul>
<li><a href="./index.html">Home</a></li>
<li><a href="./speakers.html">Speakers</a></li>
<li><a href="./schedule.html">schedule</a></li>
<li><a href="./venue.html">Venue</a></li>
<li><a href="./register.html">Register</a></li>
</ul>
</nav>
</footer>
</body>
</html>