-
Notifications
You must be signed in to change notification settings - Fork 21
/
index.html
47 lines (47 loc) · 1.9 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
<!doctype html>
<html lang="en">
<head>
<title>Welcome to Git Gud @ HackIllinois 2024!</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 git gud @ hackillinois!</h1>
<h2>come meet all of the people that came to our workshop</h2>
<h3>// git gud @ git, february 23, 2024</h3>
</div>
</section>
<div class="row">
<!-- add your details to this section (whatever you are comfortable sharing)! -->
<!-- remove the TODO comments when you are done -->
<!-- see the below cards for examples -->
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<!-- start editing here -->
<h4 class="card-title">your name (pronouns) <!-- TODO: edit this --></h4>
<h5 class="card-subtitle">university // major <!-- TODO: edit this --></h5>
<p class="card-text">something you are looking forward to at hackillinois <!-- TODO: edit this --></p>
<p class="card-text">fun fact about you <!-- TODO: edit this --></p>
<!-- stop editing here -->
</div>
</div>
</div>
<div class="col-sm-6">
<div class="card">
<div class="card-body">
<h4 class="card-title">contact us</h4>
<a href="mailto:uiuc@hack4impact.org" target="_blank" class="btn btn-info">email H4I!</a>
<a href="mailto:contact@illinoiswcs.org" target="_blank" class="btn btn-info">email WCS!</a>
</div>
</div>
</div>
</div>
</main>
</div>
</html>