-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
97 lines (95 loc) · 3.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Style Conference</title>
<link rel="stylesheet" href="./assests/stylesheets/main.css" />
</head>
<body>
<!-- this is header section -->
<header class="primery-header container group">
<h1 class="logo">
<a href="index.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="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 class="btn btn-alt" href="register.html">Register Now</a>
</section>
<!-- speakers -->
<section class="row">
<div class="grid">
<section class="teaser col-1-3">
<h5>Speakers</h5>
<a href="speakers.html">
<img
src="./assests/images/images/home/speakers.jpg"
alt="speakers"
/>
<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>
<img src="./assests/images/images/home/schedule.jpg" alt="scehdule" />
<a href="schedule.html">
<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>
<img src="./assests/images/images/home/venue.jpg" alt="venue" />
<a href="venue.html">
<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>
<!-- this is footer with navigation links -->
<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>