-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvenue.html
88 lines (83 loc) · 3.08 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
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
<!DOCTYPE HTML>
<html lang = "en">
<head>
<title>
Styles Conference
</title>
<link rel = "stylesheet" href = "css/main.css" />
<link rel = "stylesheet" href = "css/venue.css" />
</head>
<body>
<header>
<h1 class = "logo">
Styles Conference
</h1>
<section class = "header-right">
<h3 class = "tagline">
August 24th to 26th, Chicago, IL
</h3>
<nav class = "header-nav">
<ul class = "nav-list">
<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>
</section>
</header>
<section id = "body">
<section class = "map-section">
<aside class = "map-details">
<h2>
Chicago Theatre
</h2>
<p>
175 N State St <br />
Chicago, IL 60601
</p>
</aside>
<aside class = "map-embedded">
<div style="height:400px;width:100%;max-width:100%;list-style:none; transition: none;overflow:hidden;">
<div id="google-maps-canvas" style="height:100%; width:100%;max-width:100%;">
<iframe style="height:100%;width:100%;border:0;" frameborder="0" src="https://www.google.com/maps/embed/v1/place?q=The+Chicago+Theatre,+Chicago,+IL,+United+States&key=AIzaSyAN0om9mFmy1QN6Wf54tXAowK4eT0ZUPrU">
</iframe>
</div>
</div>
</aside>
</section>
<section class = "map-section">
<aside class = "map-details">
<h2>
Hotel Chicago
</h2>
<p>
333 N Dearborn St <br />
Chicago, IL 60654
</p>
</aside>
<aside class = "map-embedded">
<div style="height:400px;width:100%;max-width:100%;list-style:none; transition: none;overflow:hidden;">
<div id="google-maps-canvas" style="height:100%; width:100%;max-width:100%;">
<iframe style="height:100%;width:100%;border:0;" frameborder="0" src="https://www.google.com/maps/embed/v1/place?q=Hotel+Chicago+Downtown,+Autograph+Collection,+North+Dearborn+Street,+Chicago,+IL,+United+States&key=AIzaSyAN0om9mFmy1QN6Wf54tXAowK4eT0ZUPrU">
</iframe>
</div>
</div>
</aside>
</section>
</section>
<footer>
<a href = "index.html" class = "footer-text"> © Styles Conference</a>
<nav class = "footer-nav">
<ul class = "nav-list">
<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>