-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
77 lines (76 loc) · 3.88 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
<!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>Styles Conference - Home</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@100;300;400&display=block" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body class="text-medium text-weight-light display-inlineBLock">
<div class="content-section pt-0">
<header>
<span class="logo text-xxxlarge text-caps text-weight-thin">Styles Conference</span>
<div class=" text-xlarge">
<time datetime class="text-highlight">Aug 24-26</time>
<span class="text-highlight "> Chicago - IL</span>
<nav>
<ul class="menu text-small text-caps text-weight-regular">
<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>
</div>
</header>
<main class="jumbo">
<h1 class="text-xxlarge text-highlight">Dedicated to the Craft of Building Websites</h1>
<p class="text-xlarge">Lorem ipsum dolor sit amet consectetur adipisicing elit. Totam id impedit optio voluptatum, quis maxime dolore odit beatae voluptates unde!</p>
<p>
<a href="register.html" class="button text-caps text-weight-regular">Register Now</a>
</p>
</main>
</div>
<div class="alt-background">
<div class="content-section">
<div class="culum">
<section>
<h2 class="text-small text-caps text-weight-regular">Speakers</h2>
<img src="./pictures/speakers.jpg" alt="">
<h3 class="text-large text-highlight">World Class Speakers</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolorem, cumque.</p>
</section>
<section>
<h2 class="text-small text-caps text-weight-regular">Schedule</h2>
<img src="./pictures/schedule.jpg" alt="">
<h3 class="text-large text-highlight">A Packed Schedule</h3>
<p>Lorem ipsum dolor sit amet consectetur adipisicing elit. Dicta velit ut odit. A, rem consequuntur?</p>
</section>
<section>
<h2 class="text-small text-caps text-weight-regular">Venue</h2>
<img src="./pictures/venue.jpg" alt="">
<h3 class="text-large text-highlight">Beautiful Venue</h3>
<p>Lorem ipsum dolor sit amet consectetur, adipisicing elit. Debitis distinctio sapiente iure.</p>
</section>
</div>
</div>
</div>
<footer class="content-section grid">
<small class="text-small text-highlight text-weight-regular">© Styles Conference</small>
<nav>
<ul class="menu text-small display-inlineBLock">
<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>