-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
147 lines (139 loc) · 5.36 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!Doctype html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-110374008-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-110374008-1');
</script>
<meta charset="UTF-8">
<title>CCSF Coders</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container-fluid">
<div class="jumbotron">
<h1 class="display-4 codersMainHeader">CCSF Coders</h1>
<hr class="my-4">
<p class="lead text-center">Our mission is to spread knowledge of programming, tech, and career opportunities through work shops, discussions, and group activities.</p>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-9 col-md-9 col-sm-12">
<div class="row">
<div class="col-lg-3 col-md-5 col-sm-6 card officerMargins bottomMargin">
<div class="card-body">
<p class="h3">President</p>
<hr class="my-3">
<p class="lead">Korman Chen</p>
<p>[email protected]</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-6 card officerMargins bottomMargin">
<div class="card-body">
<p class="h3">Vice President</p>
<hr class="my-3">
<p class="lead">Justin Lee</p>
<p>[email protected]</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-6 card officerMargins bottomMargin">
<div class="card-body">
<p class="h3">Treasuer</p>
<hr class="my-3">
<p class="lead">Sriparna Majumdar</p>
<p>[email protected]</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-6 card officerMargins bottomMargin">
<div class="card-body">
<p class="h3">ICC Representative</p>
<hr class="my-3">
<p class="lead">Max Garcia</p>
<p>[email protected]</p>
</div>
</div>
<div class="col-lg-3 col-md-5 col-sm-6 card officerMargins bottomMargin">
<div class="card-body">
<p class="h3">Advisor</p>
<hr class="my-3">
<p class="lead">Craig Persiko</p>
<p>[email protected]</p>
</div>
</div>
</div>
</div>
<div class="col-lg-3 col-md-3 container">
<p class="lead">Spring 2018 Meeting Schedule</p>
<table class="table">
<thead>
<tr>
<th scope="col">Month</th>
<th scope="col">Day</th>
<th scope="col">Room</th>
<th scope="col">Description</th>
</tr>
</thead>
<tbody>
<tr>
<td>March</td>
<td>6</td>
<td>Batmale 451</td>
<td>Guest speaker from Limebike</td>
</tr>
<tr>
<td>March</td>
<td>20</td>
<td>Batmale 451</td>
<td></td>
</tr>
<tr>
<td>April</td>
<td>3</td>
<td>Batmale 451</td>
<td></td>
</tr>
<tr>
<td>April</td>
<td>17</td>
<td>Batmale 451</td>
<td></td>
</tr>
<tr>
<td>May</td>
<td>1</td>
<td>Batmale 451</td>
<td></td>
</tr>
</tbody>
</table>
<!-- <p>Next Meeting: March 6, 2018</p> -->
<a href="https://groups.google.com/forum/#!forum/ccsfcoders">Join our Google Group</a>
<p></p>
<a href="https://docs.google.com/forms/d/e/1FAIpQLSfMVX1AEdETjB1ad2101uHzG-R9-3f5kWGoB_GDaFAkcUz7cQ/viewform">Sign up for email updates</a>
</div>
</div>
</div>
<!-- <h1 id="header">CCSF Coders</h1>
<h3>Our mission is to spread knowledge of programming, tech, and career opportunities through work shops, discussions, and group activities.</h3>
<h2>Where: Batmale 451</h2>
<h2>When: Every other Tuesday at 4:15pm</h2>
<h2>Officers</h2>
<h3>President: Korman Chen - [email protected]</h3>
<h3>Vice President: Justin Lee - [email protected]</h3>
<h3>Treasurer: Catherine Wong - [email protected]</h3>
<h3>ICC Rep: Jonathan General - [email protected]</h3>
<h3>Advisor: Craig Persiko - [email protected]</h3>
<a target="_blank" href="https://groups.google.com/forum/#!forum/ccsfcoders">
<h2>Join our Google Group!</h2>
</a>
<a href="https://goo.gl/forms/NDJbogTGpDjHISR12" target="_blank">
<h2>Sign up for email updates!</h2>
</a> -->
</body>
</html>