-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
84 lines (78 loc) · 3.21 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
<!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>Home Page</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=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body class="text-weight-light">
<div class="content-section">
<header>
<span class="logo capital-case xl-scale text-weight-thin">Style conference</span>
<div>
<span class="time hightlight-text s-scale ">
<time datetime="">Aug 24-26</time>
<span >Chicago - IL</span>
</span>
<navc class="mainMenu capital-case xxs-scale text-weight-regular ">
<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>
</div>
</div>
</header>
<main class="jumbo page-center text-center">
<h2 class="hightlight-text l-scale items-center ">Dedicted to the Craft od Bulding Website</h2>
<p class="page-section m-scale items-center">Every year the brightest web designers and front-end developers descend on Chicgo to discuss the latest technologies.
Join us thus August!
</p>
<a class = "register-button xs-scale text-weight-regular" href="./register.html">REGISTER NOW</a>
</main>
<div class="page-color page-section ">
<div class="content-section ">
<div class="flex-img">
<section>
<h2 class=" capital-case xxs-scale text-weight-regular">Speakers</h2>
<img src ="./img/speakers.jpg">
<h3 class="s-scale hightlight-text">World-Class Speakers</h3>
<p class="xs-scale">Joining us from all around the world are over twenty fantastic speakers, here to shre their stories.</p>
</section>
<section >
<h2 class="capital-case xxs-scale text-weight-regular">Schedule</h2>
<img src="./img/schedule.jpg">
<h3 class="s-scale hightlight-text ">Three inspiring Days</h3>
<p class="xs-scale">Enjoy three inspiring and action-packed days of talks, gatherings, and all-around good time.</p>
</section>
<section >
<h2 class=" capital-case xxs-scale text-weight-regular flex-img">Venue</h2>
<img src="./img/venue.jpg">
<h3 class="s-scale hightlight-text">The Chicago Thearte</h3>
<p class="xs-scale">Within the heart of downtown Chicago, The Chicago Thearte will provid a beautiful conference venue.</p>
</section>
</div>
</div>
</div>
<footer class="content-section">
<small class="hightlight-text xxs-scale text-weight-regular" > © style conference </small>
<nav class = "mainMenu xxs-scale text-center">
<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>