-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.html
124 lines (97 loc) · 5.04 KB
/
about.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>SmashingConf SF 2020</title>
<link rel="stylesheet" href="assets/styles/reset.css">
<link rel="stylesheet" href="assets/styles/style.css">
<link href="https://fonts.googleapis.com/css?family=Lato:400,700,900&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Work+Sans:900&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/feec7411d6.js" crossorigin="anonymous"></script>
</head>
<body>
<!--Page Wrapper-->
<div class="page-wrapper">
<!--Header-->
<header class="header">
<h1 class="hidden">Smashing Magazine Conference About Page</h1>
<ul class="container">
<li><a href="#"><i class="fab fa-twitter"></i></a></li>
<li><a href="#"><i class="fab fa-facebook-f"></i></a></li>
<li><a href="#">Contact</a></li>
<li><a href="#">Volunteer</a></li>
<li><a href="#">Terms</a></li>
</ul>
<nav>
<h2 class="hidden">Site Navigation</h2>
<div class="container">
<a href="index.html"></a>
<ul class="main-menu">
<li><a href="about.html">About</a></li>
<li><a href="index.html#schedule">Schedule</a></li>
<li><a href="index.html#speakers">Speakers</a></li>
<li><a href="index.html#partners">Partners</a></li>
<li><a href="#">Locations</a></li>
<li><a href="tickets.html">Buy Tickets</a></li>
</ul>
<ul class="side-menu">
<li><a href="index.html"><i class="fas fa-home"></i><i class="fas fa-chevron-right fa-sm"></i></a></li>
<li><a href="about.html">About <i class="fas fa-chevron-right fa-sm"></i></a></li>
<li><a href="tickets.html">Buy Tickets</a></li>
</ul>
</div>
</nav>
</header>
<!--Main Page Wrapper-->
<main class="main">
<h2 class="hidden">Tickets Page Wrapper</h2>
<button type="button"><i class="fas fa-bars"></i></button>
<!--Conf Info-->
<section class="conf-info">
<div class="container-two">
<span>"Welcome! Desz and Devz"</span>
<h3>SMASHING MAGAZINE <br> SF CONFERENCE 2020</h3>
<p>SmashingConf is a friendly, inclusive event which is focused on real-world problems and solutions. 2 days, 1 track, 14 speakers, 300–400 attendees, and a bunch of hands-on workshops. <br> Our speakers rarely show slides: they show how they work — their setup, techniques and shortcuts for getting work done in live interactive sessions. So expect everything from refactoring and debugging to sketching and redesign, live. <br> SmashingConf is focused on front-end and UX, but it covers everything web, be it interface design or machine learning. That means a packed bundle of diverse, actionable insights for your work.</p>
<p>It's our task to help you achieve your goals. Please drop an email at <br> <span>[email protected]</span> <i class="fas fa-chevron-right fa-xs"></i></p>
</div>
</section>
<!--Conf Logo-->
<section class="conf-logo">
<div class="container-two">
<h3 class="about-h-three">Smashing Magazine Conference Logo 2020</h3>
<p>The logo of Smashing Magazine Conf 2020 was decided through the logo competition from 13.January to 17.February. <br> Following public voting and expert panel evaluation, the logo from Clifton Davies was selected. <br> After much deliberation with Mr. Davies we ended up with the following logo for this year's conference:</p>
<a href="#"><img src="assets/images/smconflogo.svg" alt="smashing magazine sf conf 2020 logo"></a>
</div>
</section>
<!--Past Events-->
<section class="past-events container-two">
<h3 class="about-h-three">See past Smashing Magazine Conferences</h3>
<p>Take a look at our last two conferences which took place in New York and in Freiburg.</p>
<div>
<a href="#">
<span>2019</span>
<span>Smashing Magazine Conference, New York</span>
</a>
<a href="#">
<span>2019</span>
<span>Smashing Magazine Conference, Freiburg</span>
</a>
</div>
</section>
</main>
<!--Footer-->
<footer class="footer other-footer">
<h2 class="hidden">About Page Footer</h2>
<div class="container">
<a href="#"></a>
<div>
<span>2020 Smashing Magazine. Some Rights Reserved.</span>
<p>With a commitment to quality content for the design community. <a href="#">Smashing Media AG</a> 2011-2019. <br> Hosted on <a href="#">Netlify</a>.</p>
</div>
</div>
</footer>
</div>
</body>
</html>