forked from icyflame/alumni-meet-website-2015
-
Notifications
You must be signed in to change notification settings - Fork 0
/
last_meet.php
47 lines (29 loc) · 916 Bytes
/
last_meet.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
40
41
42
43
44
45
46
47
<!doctype html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta http-equiv="Content-Type" content="text/html">
<title>Last Meet</title>
<?php include("mainStyle.php"); ?>
<link rel="stylesheet" type="text/css" media="all" href="css/events_styles.css">
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/scrollview.js"></script>
</head>
<style type="text/css" media="screen">
</style>
<body class="container" style="overflow-x:hidden">
<div class="container">
<?php include("menubar.php"); ?>
<div class="row">
<div class="col-md-10">
<div id="event_slide">
<?php include("content_lastmeet.php"); ?>
</div><!-- @end #content -->
</div>
<div class="col-md-2" style="background:; text-align:center; ">
<?php include("socialIcons.php");?>
</div>
</div>
</div>
</body>
</html>