-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
99 lines (98 loc) · 3.73 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
<!DOCTYPE html>
<meta charset="UTF-8">
<title>Essex Hacks</title>
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="/icon.png">
<meta name="og:image" content="/icon.png">
<meta name="og:title" content="Essex Hacks">
<meta name="twitter:title" content="Essex Hacks">
<meta name="og:description" content="Hack Club at Essex High School.">
<meta name="twitter:description" content="Hack Club at Essex High School.">
<meta name="description" content="Hack Club at Essex High School.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet prefetch" href="https://unpkg.com/[email protected]/css/tachyons.min.css">
<link rel="stylesheet" href="style.css">
<main class="sans-serif mw6 center pa4">
<header class="flex items-center">
<div class="flex items-center ">
<img src="/favicon.ico" class="w-50" alt="">
</div>
</header>
<p class="dark-grey lh-copy ma0">
Welcome! This is the
<a href="https://hackclub.com/" class="blue fw6">Hack Club</a>
at Essex High School.
</p>
<p class="dark-grey lh-copy mt1 mb0">
Learn to build fun stuff with code - beginners welcome.
</p>
<p class="dark-grey lh-copy mt1">
Food, friends, and fun included.
</p>
<div class="mv4 flex items-center flex-column flex-row-ns">
<div class="flex flex-column br3 ba b--blue bw2 w3 h3 tc">
<span class="f6 lh-title bg-blue white bb b--blue bw1">Jan</span>
<span class="f3 lh-copy">30</span>
</div>
<div class="mt2 tc mt0-ns ml3-ns tl-ns">
<span class="dark-grey b">
Our next meeting
<a target="_blank" href="http://rmd.at/essexhacks" class="green i f6 fw4">
– want a reminder?
</a>
</span>
<span class="db mt1 f5 grey">CXXX, 2:35–4:00pm</span>
</div>
</div>
<h2 class="mv3 f3 fw6 blue">Quick Links</h2>
<div class="flex-ns">
<section class="w-50-ns b--near-white ">
<ol class="list list--links pl0 mt1 b--near-white">
<li class="pv2 bb b--near-white">
<a target="_blank" href="https://replit.com">Replit</a>
</li>
<li class="pv2 bb b--near-white">
<a target="_blank" href="https://github.com">GitHub</a>
</li>
<li class="pv2 bb b--near-white">
<a target="_blank" href="https://workshops.hackclub.com">Workshops</a>
</li>
<li class="pv2 bb b--near-white">
<a target="_blank" href="https://hackclub.com/slack">Slack</a>
</li>
<li class="pv2 bb b--near-white">
<a target="_blank" href="https://github.com/hackclub/hackclub/blob/master/CONDUCT.md">Code of Conduct</a>
</li>
</ol>
</section>
</div>
<h2 class="mt2 f3 fw6 blue">Submit</h2>
<form
action="https://formspree.io/f/xyyayepw"
method="POST"
class="flex flex-column flex-row-ns items-end-ns">
<label class="mb3 border-box">
<span class="f6 dark-grey">Name</span>
<input
type="text"
name="name"
class="input-reset border-box dark-gray ba b--light-gray pv1 ph2 br2 w-100 sans-serif f6"
placeholder="Abc Xyz">
</label>
<label class="pl3-ns mb3 border-box">
<span class="f6 dark-grey">URL</span>
<input
type="url"
name="url"
class="input-reset border-box dark-gray ba b--light-gray pv1 ph2 br2 w-100 sans-serif f6"
placeholder="http://abc.tech">
</label>
<div class="pl3-ns mb3 border-box">
<input type="submit" value="Submit" class="input-reset f6 sans-serif br2 pa2 white bn bg-blue">
</div>
</form>
<footer class="mt4 grey">
<strong class="fw6">Essex Hacks.</strong>
MIT licensed. Based on State High HC Site.
</footer>
</main>