-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
123 lines (113 loc) · 3.82 KB
/
index.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
<html>
<head>
<meta charset="UTF-8">
<meta name="description" content="Clear It - Discussion Forum">
<meta name="keywords" content="IITK, Clear It">
<meta name="viewport" content="width=device-width initial-scale=1.0">
<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/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<style>
.navbar {
margin-bottom: 0;
border-radius: 0;
background-color: #353b48;
}
.row.content {height: 450px}
.sidenav {
padding-top: 20px;
background-color: #d1d8e0;
height: 100%;
}
footer {
background-color: #555;
color: white;
padding: 15px;
}
@media screen and (max-width: 767px) {
.sidenav {
height: auto;
padding: 15px;
}
.row.content {height:auto;}
}
.image{
background-image: url("pic.jpg");
background-color:white;
background-size:cover;
height: 500px;
background-repeat: no-repeat;
background-postion: center;
position: relative;
}
div.first{
background: rgba(76, 175, 80, 0.1);
height:350px;
width:800px;
background-position:center;
}
</style>
<title>DiscIt</title
</head>
<body>
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<p class="navbar-text" ><img src="logo.jpg" height="100" width="100"></p>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<font color="white" size="30"><b><i>DISCIT</i></b></font><br>
<font color="white" size="2"><b><i>AN IN-HOUSE DISCUSSION FORUM FOR IITK STUDNETS.</i></b></font>
<ul class="nav navbar-nav">
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="active"><a href=""><b>HOME</b></a></li>
<li><a href="signup.php">SIGN UP</a></li>
<li><a href="login.php"><span class="glyphicon glyphicon-log-in"></span> LOGIN</a></li>
<li><a href="about.html">ABOUT US</a></li>
</ul>
</div>
</div>
</nav>
<div class="container-fluid text-center">
<div class="row content">
<div class="col-sm-2 sidenav">
<div class="well">
<p><b><i>“Dream is not that which you see while sleeping it is something that does not let you sleep.”</i></b>
<p>- APJ Abdul Kalam</p>
</p>
</div>
<div class="well">
<p>
<b><i>"A ship is always safe at the shore but that is not what it’s built for."</i></b></p>
<p>- Albert Einstein</p>
</div>
</div>
<div class="col-sm-8 text-left">
<div class="image">
<p><center><b><i><font size="20">WELCOME IITK STUDENTS..</font></i></b></center></p><br><br>
<div class="first">
<p><center><i><b><font size="4">This discuusion forum aims to provide an online platform for the first year B-TECH/BS students of the
INDIAN INSTITUTE OF TECHNOlOGY, KANPUR to clear their doubts as well as have an enriching experience through discussion on
various topics with their peers and instructors.</font></b></i></center></p>
</div>
</div>
</div>
<div class="col-sm-2 sidenav">
<div class="well">
<p><b><i>"Success is not final, failure is not fatal: it is the courage to continue that counts."</i></b></p>
<p>- Winston Churchill</p></div>
<div class="well">
<p><b><i>"Faith is the bird that feels the light when the dawn is still dark"</i></b></p>
<p>- Rabindranath Tagore.</p>
</div>
</div>
</div>
</div>
</body>
</html>