-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
103 lines (80 loc) · 3.62 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
98
99
100
101
102
103
<!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">
<link rel="stylesheet" href="css/style.css">
<title>Techlahoma Workshop</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1>Techlahoma</h1>
<h2>2022-07-Workshop</h2>
</div>
</div>
<!-- Hero Section -->
<section class="hero container">
<div class="hero text">
<h1>Beginner Coding Workshop</h1>
<p>This workshop will be in person at <a href="https://clevyr.com/">Clevyr</a> in OKC on Saturday, July 16, 2022.
We'll start at 1:00 pm and go until 5:00 pm. This event is free to attendees because of our sponsors!</p>
<p>We'll start with the Basic HTML and Basic CSS sections on freeCodeCamp and get as far as we can!</p>
</div>
<div>
<a href="https://www.freecodecamp.org/learn/responsive-web-design/" target="_blank"
class="button">freeCodeCamp Curriculum</a>
</div>
</section>
<!-- Participants -->
<section class="participants container ">
<div class="participants text">
<h2>Participants</h2>
<p>Our audience is adults learning about coding with HTML and CSS for the first time. Coaches will be
experienced developers.</p>
<p>We expect to have about 20 attendees, a facilitator, 7-8 coaches, and 1-2 general volunteers. Members of
underrepresented groups are highly encouraged to apply and attend.</p>
<div class="grid">
<p>Registration is closed, but you can sign up for the waitlist or mark your interest for next time!</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSeb4bYLGwhJ3mVwyR1k2Lb3oSBWj78aKzbTE7Rs4ec99GQSIA/viewform"
target="_blank" class="button">Attendee Application</a>
<p>We need some coaches for this workshop! Coaching is pretty low-key and low-stress.</p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfQII7GAMlG-XgO5PefGD_bLuqxQ76MZXY9K4Rm8XDVDZMA5w/viewform"
target="_blank" class="button">Coach Sign-Up</a>
</div>
</div>
</section>
<!-- Sponsors -->
<section class="sponsors container">
<div class="sponsors text">
<h2>Sponsors</h2>
<p>Thanks to our sponsors, who are covering the costs for this workshop so that it's free for community members to attend!</p>
</div>
</section>
<section class="cards grid container">
<div class="card">
<a href="https://www.rfxsolutions.com/" class="sponsor"><img src="img/rfx_logo.svg" alt="RFX Solutions"></a>
</div>
<div class="card">
<a href="https://www.immy.com/" class="sponsor"><img src="img/immy.png" alt="IMMY"></a>
</div>
<div class="card">
<a href="https://www.okcoders.com/" class="sponsor"><img src="img/OK+Coders+logo+BIG.png" alt="OK Coders"></a>
</div>
<div class="card">
<a href="https://canyon-trail.com/" class="sponsor"><img src="img/canyontraillogo.jpg" alt="Canyon Trail"></a>
</div>
</section>
<!-- Footer -->
<footer class="banner flex">
<img src="img/banner.png" alt="">
<div class="button">
<a href="http://slack.techlahoma.org/"">
Join the Slack!
</a>
</div>
</footer>
</body>
</html>