-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathv1.html
204 lines (166 loc) · 5.5 KB
/
v1.html
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
<!DOCTYPE html>
<html>
<head>
<title>BITBOOK</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="app.css" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Spicy+Rice" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js"></script>
<style>
body {font-family: Arial, Helvetica, sans-serif;}
.navbar {
width: 100%;
background-color: #555;
}
.navbar a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background-color: #000;
}
.active {
background-color: #4CAF50;
}
@media screen and (max-width: 500px) {
.navbar a {
float: none;
display: block;
}
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color: white;
padding: 14px 16px;
background-color: inherit;
font-family: inherit; /* Important for vertical align on mobile phones */
margin: 0; /* Important for vertical align on mobile phones */
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: #ddd;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: white;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color: #ddd;
}
.dropdown:hover .dropdown-content {
display: none;
}
/* Make the image fully responsive */
.carousel-inner img {
margin:auto;
width: 100%;
height: 100%;
}
.caption {
position: absolute;
left: 0;
top: 70%;
width: 100%;
text-align: center;
}
.jumbotron{
background: white;
opacity: 0.3;
}
</style>
<body>
<div class="navbar fixed-top">
<a href="#"><i class="fa fa-fw fa-home"></i> BITBOOK</a>
<a href="https://www.bitmesra.ac.in/ContactUs.aspx?cid=1&pid=CT"><i class="fa fa-fw fa-envelope"></i> Contact</a>
<div class="dropdown">
<button type="button" class="btn btn- dropdown-toggle" data-toggle="dropdown"><i class="fa fa-fw fa-user"></i> Login</button>
<div class="dropdown-menu">
<li><a class="dropdown-item" href="v2.html"><strong>Student</strong></a></li>
<li role="separator" class="divider"></li>
<li><a class="dropdown-item" href="v3.html"><strong>Anti-ragging</strong></a></li>
<li role="separator" class="divider"></li>
</div>
</div>
</div>
<!--<div class="container">-->
<div id="demo" class="carousel slide" data-ride="carousel" data-interval="1800">
<!-- Indicators -->
<ul class="carousel-indicators">
<li data-target="#demo" data-slide-to="0" class="active"></li>
<li data-target="#demo" data-slide-to="1"></li>
<li data-target="#demo" data-slide-to="2"></li>
</ul>
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="Pictures/Y.png" class="img-fluid" style="border: 5px solid black">
<div class="carousel caption">
<h1>BITBOOK</h1>
<h2>An effort to enable senior cum junior one-to-one interaction without any physical talk</h2>
</div>
</div>
<div class="carousel-item ">
<img src="Pictures/X.png" class="img-fluid" style="border: 5px solid black">
<div class="carousel caption">
<h1>
Every once in a while, a new technology, an old problem, and a big idea turn into an innovation.
</h1>
</div>
</div>
<div class="carousel-item">
<img src="Pictures/Z.png" class="img-fluid" style="border: 5px solid black">
<div class="carousel caption">
<h1>Put up your queries here!</h1>
</div>
</div>
<!--<div class="carousel-item">
<img src="" class="img-fluid" style="border: 5px solid black">
<div class="carousel caption">
<div class="jumbotron">
<h3>It does not matter how slowly you go as long as you don`t stop</h3>
</div>
</div>
</div>
<div class="carousel-item">
<img src="" class="img-fluid" style="border: 5px solid black">
<div class="carousel caption">
<div class="jumbotron">
<h3>Put up your queries here</h3>
</div>
</div>
</div>
</div>-->
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
<!-- </div>-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/js/bootstrap.min.js"></script>
</body>
</html>