-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathstudent-hub.php
169 lines (80 loc) · 4.72 KB
/
student-hub.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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
<?php
/*
Author name: Sateesh
E-mail ID: <Your E-mail ID>
Date: <dd-mm-yyyy>
*/
/////////////////////////////////////////////////////////
//include_once("variables.php");
//include_once("checkLoginStatus.php");
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Student Hub</title>
<?php include_once("stylesAndFont.php"); ?>
</head>
<body>
<!-- Mobile bar starts here -->
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()">×</a>
<ul> <!-- User class="activeLink" to make links active -->
<li><a href="#">Home</a></li>
<li><a href="#">DCent MASS</a></li>
<li><a href="#">Our Services</a></li>
<li><a href="#">Student Hub</a></li>
<li><a href="#">Courses</a></li>
<li><a href="#">Events</a></li>
<li><a href="#">Media</a></li>
<!-- <li><a href="#">Forum</a></li> -->
<li style="border-bottom: 2px solid #06f;"><a href="#">Contact Us</a></li>
<!-- <li style="border-bottom: 2px solid #06f;"><a href="#">FAQs</a></li> -->
</ul>
</div>
<span id="openNavID" style="font-size:30px;cursor:pointer" onclick="openNav()">☰</span>
<!-- Mobile bar ends here -->
<div class="mainContainer" id="mainContainer"> <!-- DO NOT REMOVE THIS -->
<div class="container-fluid">
<!-- MAIN CONTENT STARTS -->
<!-- WRITE MAIN CONTENT HERE -->
<div class="jumbotron jumbotron-fluid" style="margin-top: 10px;">
<span class="main-heading"><center>STUDENT HUB</centr></span> </div>
<div class="row">
<!--left col-->
<div class="col-md-6">
<div class="col-md" ><img src="images/s-h-1.png" style="width:100%;height:300px;">
<span class="para-heading">the year of living with banksy</span>
When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…
</div></br>
<div class="col-md" ><img src="images/s-h-4.jpeg" style="width:100%;height:300px;" >
<span class="para-heading">the year of living with banksy</span>
When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…
</div>
</div>
<!--right col-->
<div class="col-md-6 col-sm">
<div class= "row">
<div class="col-md-6 col-sm-6" ><img src="images/s-h-2.jpeg" style="height:100px;" width="100%" >
<span class="para-heading">the year of living with banksy</span>
When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…
</div>
<div class="col-md-6 col-sm-6" ><img src="images/s-h-3.jpeg" style="height:100px;" width="100%" >
<span class="para-heading">the year of living with banksy</span>
When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…
</div></div>
</br>
<div class="col-md" "col-sm"><img src="images/s-h-5.jpeg" style="height:300px;" width="100%" >
<span class="para-heading">the year of living with banksy</span>
When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…When I first moved to Los Angeles in July of 2013, I found a room for rent in a house on Craigslist. I soon learned the landlord, and the…
</div>
</div>
<!-- NOTE: Please keep your code clean + readable and add comments -->
<!-- MAIN CONTENT ENDS -->
</div>
</div>
<?php include_once("script.php"); ?>
</body>
</html>