-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhome.php
79 lines (45 loc) · 1.24 KB
/
home.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>12th Annual Alumni Meet</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<?php include("mainStyle.php");?>
<script type="text/javascript" src="sponsor-cycle/cycle.js"></script>
<script type="text/javascript" src="sponsor-cycle/cycle-script.js"></script>
</head>
<body class="container" id="page">
<?php //include("back.php");?>
<div id="mainpage" class="container">
<?php include("top_home.php"); ?>
<div class="row">
<div class="col-md-3">
<?php include('noticeboard.php'); ?>
<br/>
<br/>
<!-- <a href="http://antoniobernini.com"> <img src="images/timekeeper.png" width="100%"/></a> -->
</div>
<div class="col-md-6" style="">
<?php include("imageSlider.php");?>
<br/>
</div>
<div class="col-md-1">
<br/>
</div>
<div class="col-md-2" >
<?php include("socialIcons.php");?>
<br/>
<?php include("sponsorsSlider.php");?>
</div>
</div>
</div>
</body>
<script>
$(document).ready(function(){
$(".carousel").carousel({
interval: 2000,
pause: "hover"
});
});
</script>
</script>
</html>