-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathmembership.html
39 lines (29 loc) · 1.56 KB
/
membership.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
<!-- Display all our sponsor logos, list specific sponsorships (eg 50% off pizza at xyz), list other membership perks eg able to attend weekly meet-ups, able to contribute to ongoing projects etc -->
<!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">
<!-- include scripts.js and only run when ready -->
<script src="../scripts.js" defer></script>
<link rel='stylesheet' type='text/css' href='./styles.css'>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.1/css/font-awesome.min.css">
<title>Programming Club: Home</title>
</head>
<body>
<div id="nav"></div>
<div class="content">
<h2>Memberships</h2>
<p>Sign up below to get access to our weekly events, ongoing club-projects, exclusive Minecraft server (see below for more info), and more!</p>
<li style="display: inline;"><a class="button" href="https://campus.hellorubric.com/?s=6055" target=”_blank”>Sign Up</a></li>
<!-- Image of club -->
<img src="./assets/photos/little_miss_espresso_cropped.jpg"
alt="Club members during a weekly Summer coding session at Little Miss Espresso"
title="A weekly summer coding session at Little Miss Espresso"
class ="photo">
<!-- Button to minecraft guide -->
<li style="display: inline;"><a class="button" href="/minecraft.html">Join Minecraft Server</a></li>
</div>
</body>
</html>