# 地点 VENUE
## 页面
![](http://cndpic.dodoke.com/b634ecb86422a954b70becfdd8a7834a)
## HTML 代码
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Venue - Styles Conference</title>
</head>
<body>
<!-- Header -->
<header>
<h1>
<a href="index.html">Styles <br> Conference</a>
</h1>
<h3>August 24–26th — Chicago, IL</h3>
<nav>
<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>
</header>
<!-- Lead -->
<section>
<div>
<h1>Venue</h1>
<p>The conference is held at The Chicago Theatre, a beautiful historical landmark. The conference hotel, Hotel Chicago, is a short walk away down State Street.</p>
</div>
</section>
<!-- Main content -->
<section>
<div>
<!-- Chicago Theatre -->
<section>
<div>
<h2>Chicago Theatre</h2>
<p>175 N State St <br> Chicago, IL 60601</p>
<p><a href="http://www.thechicagotheatre.com/">thechicagotheatre.com</a> <br> (312) 462-6300</p>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m5!3m3!1m2!1s0x880e2ca55810a493%3A0x4700ddf60fcbfad6!2schicago+theatre!5e0!3m2!1sen!2sus!4v1388701393606"></iframe>
</section>
<!-- Hotel Chicago -->
<section>
<div>
<h2>Hotel Chicago</h2>
<p>333 N Dearborn St <br> Chicago, IL 60654</p>
<p><a href="http://thehotelchicago.com/">thehotelchicago.com</a> <br> (312) 245-0333</p>
</div>
<iframe src="https://www.google.com/maps/embed?pb=!1m5!3m3!1m2!1s0x880e2cb1da049173%3A0xa5c91d255a775f0b!2sHotel+Sax+Chicago%2C+North+Dearborn+Street%2C+Chicago%2C+IL!5e0!3m2!1sen!2sus!4v1388702493978"></iframe>
</section>
</div>
</section>
<!-- Footer -->
<footer>
<small>© Styles Conference</small>
<nav>
<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>
```