forked from IllinoisWCS/git-gud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.52 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
<!doctype html>
<html lang="en">
<head>
<title>Welcome to WCS Explorations!</title>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Nunito&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<div class="container">
<main role="main">
<section class="jumbotron text-center">
<div class="container">
<h1>welcome to wcs explorations!</h1>
<h2>come meet all of the people that came to our first workshop</h2>
<h3>// git gud @ git, september 1, 2020</h3>
</div>
</section>
<div class="row">
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">wcs officer board</h4>
<h5 class="card-subtitle">soph / jr / sr // various cs majors</h5>
<p class="card-text">we can help you with your classes!</p>
<p class="card-text">check out our website at illinoiswcs.org to learn more</p>
<a href="https://www.instagram.com/illinoiswcs" target="_blank" class="btn btn-info">instagram</a>
<a href="https://www.facebook.com/illinoisWCS" target="_blank" class="btn btn-info">facebook</a>
<a href="mailto:[email protected]" target="_blank" class="btn btn-info">email</a>
</div>
</div>
</div>
<!-- add your details to this section if you are comfortable sharing! -->
<!-- remove the TODO comments when you are done -->
<!-- see the above cards for examples -->
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<!-- start editing here -->
<h4 class="card-title">RISHIN PANDIT (he/him/his)</h4>
<h5 class="card-subtitle">Sophomore majoring in CS + Econ <!-- TODO: edit this --></h5>
<p class="card-text">classes you are taking <!-- TODO: edit this --></p>
<p class="card-text">fun fact about you <!-- TODO: edit this --></p>
<!-- TODO: edit this --> <a href="https://www.instagram.com/im.rishin" target="_blank" class="btn btn-info">instagram</a>
<!-- TODO: edit this --> <a href="https://www.facebook.com/rishinpandit target="_blank" class="btn btn-info">facebook</a>
<!-- TODO: edit this --> <a href="mailto:[email protected]" target="_blank" class="btn btn-info">email</a>
<!-- stop editing here -->
</div>
</div>
</div>
</div>
</main>
</div>
</html>