-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathevents.php
More file actions
49 lines (39 loc) · 1.25 KB
/
events.php
File metadata and controls
49 lines (39 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<?php
include 'head.php';
?>
<title>Upcoming Events | Fans Of Gaming (FOG)</title>
</head>
<body>
<?php
include 'navigation.php';
?>
<div class="container">
<h1>Upcoming Fans Of Gaming Events</h1>
<div class="row">
<div class="text-center col-md-4 col-sm-12">
<a href="FOGCON2015"><img src="img/FOGCON_Logo.png" class="img-responsive" border="0" /></a><br />
<h2>FOGCON 2015</h2>
<p>May 29 - 31, 2015<br />
The Avanti Dome<br />
Pekin, IL</p>
<p><a href="FOGCON2015" class="btn btn-sm btn-default">Learn More <span class="fa fa-fw fa-angle-double-right"></span></a></p>
</div>
<div class="text-center col-md-4 col-sm-12">
<img src="img/FOGGameDay_2015_Logo.png" class="img-responsive" border="0" /><br />
<h2>FOG Game Day 2015</h2>
<p>October 3, 2015<br />
The Avanti Dome<br />
Pekin, IL</p>
<!--<p>Only $10.00 for entire day of gaming! </p> -->
<p><em>Check back soon for more details.</em></p>
</div>
</div>
</div><!-- /.container -->
<?php
include 'footer.php';
?>
</body>
</html>