-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
98 lines (89 loc) · 4.8 KB
/
index.html
File metadata and controls
98 lines (89 loc) · 4.8 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous" />
<!-- Font Awesome CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" />
<!-- Custom CSS -->
<link rel="stylesheet" href="../assets/css/style.css" />
<title>ProgClubGSU</title>
</head>
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">ProgClubGSU</a>
<button class="navbar-toggler navbar-dark" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item active">
<a class="nav-link" href="index.html"><span class="nav-link-num">01.</span> Home
<span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="templates/resources.html"><span class="nav-link-num">02.</span> Resources</a>
</li>
<li class="nav-item">
<a class="nav-link" href="templates/members.html"><span class="nav-link-num">03.</span> Members</a>
</li>
<li class="nav-item">
<a class="nav-link" href="templates/events.html"><span class="nav-link-num">04.</span> Events</a>
</li>
</ul>
<div class="form-inline my-2 my-lg-0">
<a class="btn" target="_blank" href="https://discord.gg/pxJAqXX">Join</a>
<a target="_blank" href="http://instagram.com/gsuprogclub"><i class="fa fa-instagram"></i></a>
</div>
</div>
</nav>
<body>
<div class="container">
<div class="row body-margin">
<div class="col-lg-8">
<h1>Welcome to ProgClub at GSU</h1>
<p>
We are the programming club at GSU and are here to help you with everything coding related. From interview prep to building side projects to learning about various topics, we do it all. Whether you are a beginner or an expert, this club has something
for everyone.
</p>
<a class="btn mb-3" target="_blank" href="https://discord.gg/pxJAqXX">Join</a>
</div>
</div>
<div class="row sections">
<div class="col-lg-8">
<h1>What We Do</h1>
<p>
Coding review and practice of important concepts (Strings, Arrays, Recursion, Trees, Graphs, etc.)
</p>
<p>
Interview prep (writing functions under pressure, big-O, how to carry yourself during a phone screen)
</p>
<p>Resume reviews and how to apply for jobs</p>
<p>
Building things for yourself (building a website, web apps, etc.)
</p>
<p>
Workshops/speakers on advanced topics (machine learning, data science, security, etc.)
</p>
</div>
</div>
<div class="row sections">
<div class="col-lg-8">
<h1>Meetings</h1>
<p>We have events on Fridays, Saturdays, and Sundays depending on our schedule</p>
<p>We meet on Fridays from 2 PM - 4 PM EST</p>
<p>We meet on Saturdays from 2 PM - 3 PM EST</p>
<p>We meet on Sundays from 2 PM - 4 PM EST</p>
<p>Refer to the <a class="events-hyperlink" href="templates/events.html">events section</a> for more details</p>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"></script>
</body>
</html>