-
Notifications
You must be signed in to change notification settings - Fork 1
/
index1.php
173 lines (76 loc) · 2.72 KB
/
index1.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
80
81
82
83
84
85
86
87
<?php
include "common.php";
if (isset($_SESSION['email'])) {
header('location: products.php');
}
?>
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" >
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="index.css" rel="stylesheet" type="text/css"/>
<style>
.row_style{
margin-top:10px;
}
</style>
<title>N</title>
</head>
<body>
<?php
include 'header.php';
?><br>
<div id="banner_image">
<div class="container">
<h2>STUDENT UNIVERSE</h2>
<div id="myCarousel" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<ol class="carousel-indicators">
<li data-target="#myCarousel" data-slide-to="0" class="active"></li>
<li data-target="#myCarousel" data-slide-to="1"></li>
<li data-target="#myCarousel" data-slide-to="2"></li>
</ol>
<!-- Wrapper for slides -->
<div class="carousel-inner">
<div class="item active">
<img src="img/4.png" alt="entertainment" style="width:100%;">
<div class="carousel-caption">
<h3>entertainment</h3>
<p>Student life needs entertainemnt , entertainemnt and entertainemnt</p>
</div>
</div>
<div class="item">
<img src="img/img-22.jpg" alt="Chicago" style="width:100%;">
<div class="carousel-caption">
<h3>SHOP</h3>
<p>DIVE into products for student life</p>
</div>
</div>
<div class="item">
<img src="img/about-img.jpg" alt="New York" style="width:100%;">
<div class="carousel-caption">
<h3>BLOGGING</h3>
<p>Relive the orld for students with us!!</p>
</div>
</div>
</div>
<!-- Left and right controls -->
<a class="left carousel-control" href="#myCarousel" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<a class="right carousel-control" href="#myCarousel" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
</div>
<?php
include 'footer.php';
?>
</body>
</html>