-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.php
39 lines (36 loc) · 1.5 KB
/
about.php
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
<?php
include("partials/header.php");
?>
<!-- Intro Header -->
<header class="intro">
<div class="intro-body">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="brand-heading">About Us</h1>
<p class="intro-text">Here's a little about ourselves.</p>
<a href="#about" class="btn btn-circle page-scroll">
<i class="fa fa-angle-double-down animated"></i>
</a>
</div>
</div>
</div>
</div>
</header>
<!-- About Section -->
<section id="about" class="container content-section text-center">
<div class="row">
<div class="col-lg-8 col-lg-offset-2">
<h2>What is Spartan Hackers?</h2>
<p>Spartan Hackers exists to foster a community of technological innovation, collaboration, and creation at Michigan State University.</p>
<h2>When was Spartan Hackers formed?</h2>
<p>Last year, a group of dedicated students got together to host a series of events to introduce each other to valuable
hacking skills as well as host MSU's first hackaton: <a href="sparahack.com">Spartahack</a>.</p>
<h2>Who can become a hacker?</h2>
<p>Anyone with a computer or a desire to learn can become a hacker. We have weekly meetings and all are invited.</p>
</div>
</div>
</section>
<?php
include("partials/footer.php");
?>