-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.php
38 lines (32 loc) · 905 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<?php include('head.php') ?>
<body>
<?php $home = true ?>
<?php include('navbar.php') ?>
<!-- Begin page content -->
<div class="container">
<div class="row">
<div class="col-xs-12">
<div class="page-header">
<h1 class="text-center">Web Dev Society </h1>
</div>
<p class="lead">
The web development society's goal is to provide students with opportunity to gain experience,
while providing Dalhousie's Community with websites and web applications.
</p>
</div>
</div>
<h3>Sponsors</h3>
<div class="row">
<div class="col-xs-4">
<a href="https://society.cs.dal.ca/">
<img src="images/CSSLogo.png" alt="Computer Science Society Logo" class="img-responsive">
</a>
</div>
</div>
</div>
<?php include('footer.php') ?>
<?php include('javascript.php') ?>
</body>
</html>