-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathschedule.html
More file actions
59 lines (49 loc) · 2.15 KB
/
schedule.html
File metadata and controls
59 lines (49 loc) · 2.15 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Styles Conference</title>
<link rel="stylesheet" href="assets/stylesheets/main.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lato:100,300,400">
</head>
<body>
<!--Header -->
<header class="primary-header container group">
<section class="container">
<h1 class="logo">
<a href="index.html">Styles <br> Conference</a>
</h1>
</section>
<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>
<!--Main content -->
<section class="row-alt">
<div class="lead container">
<h1>Shedule</h1>
<p>The conference opens with amazing workshops and continues with two days of incredible talks and keynotes, all of which are facilitated by industry-leading experts.</p>
</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>