# 首页 HOME
## 页面
![](http://cndpic.dodoke.com/b681c17aa4d969eff9d2906057f48227)
## HTML 代码
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>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>
<!-- Hero -->
<section>
<h2>Dedicated to the Craft of Building Websites</h2>
<p>Every year the brightest web designers and front-end developers descend on Chicago to discuss the latest
technologies. Join us this August!</p>
<a href="register.html">Register Now</a>
</section>
<!-- Teasers -->
<section>
<div>
<!-- Speakers -->
<section>
<h5>Speakers</h5>
<a href="speakers.html">
<img src="assets/images/home/speakers.jpg" alt="Professional Speaker">
<h3>World-Class Speakers</h3>
</a>
<p>Joining us from all around the world are over twenty fantastic speakers, here to share their stories.</p>
</section>
<!-- Schedule -->
<section>
<h5>Schedule</h5>
<a href="schedule.html">
<img src="assets/images/home/schedule.jpg" alt="Conference Attendees">
<h3>Three Inspiring Days</h3>
</a>
<p>Enjoy three inspiring and action-packed days of talks, gatherings, and all-around good times.</p>
</section>
<!-- Venue -->
<section>
<h5>Venue</h5>
<a href="venue.html">
<img src="assets/images/home/venue.jpg" alt="The Chicago Theatre">
<h3>The Chicago Theatre</h3>
</a>
<p>Within the heart of downtown Chicago, The Chicago Theatre will provide a beautiful conference venue.</p>
</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>
```