-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
126 lines (95 loc) · 3.83 KB
/
index.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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Styles Conference</title>
<link rel="stylesheet" href="stylesheets/style4.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="fifth-page.html">Styles <br> Conference</a>
</h1>
<h3 class="tagline">August 24–26th — Chicago, IL</h3>
<nav class="nav primary-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>
<section class="container hero">
<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>
<p>Steve Jobs once said, <q>One home run is much better than two doubles.</q></p>
</section>
<!-- <a href="https://solarsystem.nasa.gov/solar-system/our-solar-system/overview/" target="_blank"><input type="button"
value="Nazars Button" class="nazar"></a> -->
<!-- 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="Professional Speaker">
<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="Professional Speaker">
<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 class="primary-footer container group">
<small> © Styles Conference </small>
<nav class="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>