# 发言 SPEAKERS
## 页面
![](http://cndpic.dodoke.com/d6b1607db83f5851c75a08f78e93b7ad)
## HTML 代码
```html
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Speakers - 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>Speakers</h1>
<p>We’re happy to welcome over twenty speakers to present on the industry’s latest technologies. Prepare for an inspiration extravaganza.</p>
</div>
</section>
<!-- Main content -->
<section>
<div>
<!-- Aaron Irizarry -->
<section id="aaron-irizarry">
<div>
<h2>Aaron Irizarry</h2>
<h5>Designing a Culture of Design</h5>
<p>Workplace culture doesn’t start with beanbags, foosball tables, or a beer fridge, and it doesn’t end with neckties, PCs, or big corporations. It’s the unwritten rules, behavior, beliefs, and the motivations that enable good work to get done, or it’s what stifles a workforce. For design to be most effective and for designers to feel valued, we need to work in a culture that embraces design and allows it to succeed.</p>
<p>In Aaron’s session he will explore how to recognize the traits of organizations that *get* design, both large and small. He will share what those teams, departments, and companies have that others don’t, and more importantly, how to begin to change your own workplace’s culture. Once you’ve worked within a culture of design it’s almost impossible to imagine yourself anywhere else.</p>
<h5>About Aaron</h5>
<p>Aaron Irizarry is a Senior Product Designer for Nasdaq OMX, a lover of heavy metal, a foodie, and a master of BBQ arts. You can find some of his thoughts and presentations on the conversation surrounding design over at <a href="http://www.discussingdesign.com/">discussingdesign.com</a>.</p>
</div>
<aside>
<div>
<img src="assets/images/speakers/aaron-irizarry.jpg" alt="Aaron Irizarry">
<ul>
<li><a href="#">@aaroni</a></li>
<li><a href="#">thisisaaronslife.com</a></li>
</ul>
</div>
</aside>
</section>
<!-- Zoe Mickley Gillenwater -->
<section id="zoe-mickley-gillenwater">
<div>
<h2>Zoe Mickley Gillenwater</h2>
<h5>Leveling Up with Flexbox</h5>
<p>By now, you’ve probably heard of “flexbox,” short for the CSS Flexible Box Layout module and the most fully developed and well supported of CSS3’s wide array of new layout mechanisms. Flexbox allows you to create fluid, responsive layouts without having to worry about all those pesky float layout quirks we’ve dealt with for over a decade. But with cross-browser support still incomplete, you’ve probably relegated flexbox to the “one day” pile of web design tricks.</p>
<p>It’s time to stop waiting. In this talk, Zoe aims to convince you that it’s a good idea to start learning and using flexbox today. You’ll learn how to take your designs—and web design skills—to the next level as we use flexbox as practical progressive enhancement, adding it in bits and pieces on individual page components with graceful fallbacks.</p>
<h5>About Zoe</h5>
<p>Zoe Mickley Gillenwater is a web designer and developer who loves creating sites that work for as many people and devices as possible. She wrote an entire book on fluid web sites two years before “responsive web design” had a name (<cite><a href="http://www.flexiblewebbook.com/">Flexible Web Design: Creating Liquid and Elastic Layouts with CSS</a></cite>), and has also authored the book <cite><a href="http://www.stunningcss3.com/">Stunning CSS3: A Project-based Guide to the Latest in CSS</a></cite> and the video training title <cite><a href="http://zomigi.com/publications/#pub-accessibility">Web Accessibility Principles</a></cite> for lynda.com. Zoe currently works as a UX designer for <a href="http://www.booking.com/">Booking.com</a>.</p>
</div>
<aside>
<div>
<img src="assets/images/speakers/zoe-mickley-gillenwater.jpg" alt="Zoe Mickley Gillenwater">
<ul>
<li><a href="#">@zomigi</a></li>
<li><a href="#">zomigi.com</a></li>
</ul>
</div>
</aside>
</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>
```