-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
94 lines (75 loc) · 3 KB
/
main.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
89
90
91
92
93
94
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Styles Conference</title>
<link rel="stylesheet" href="assets\styles\main.css">
<link rel="stylesheet"
href="http://fonts.googleapis.com/css?family=Lato:100,300,400">
</head>
<body>
<header class="primary-header container group">
<h1 class="logo"><a href="main.html">Styles <br> Conference</a></h1>
<h3 class="tagline">August 24–26th — Chicago, IL</h3>
<nav class="nav primary-nav">
<ul>
<li><a href="main.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 class="hero container">
<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" class="btn btn-alt">Register Now</a>
</section>
<!-- Teasers -->
<section class="row">
<div class="grid">
<!-- Speakers -->
<section class="teaser col-1-3">
<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 class="teaser col-1-3">
<h5>Schedule</h5>
<a href="schedule.html">
<img src="assets/images/home/schedule.jpg" alt="Schedule">
<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 class="teaser col-1-3">
<h5>Venue</h5>
<a href="venue.html">
<img src="assets/images/home/venue.jpg" alt="Venue">
<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 class="primary-footer container group">
<small>© Styles Conference</small>
<nav class="nav">
<ul>
<li><a href="main.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>