-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtv-rr.html
250 lines (220 loc) · 11.7 KB
/
tv-rr.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
<!DOCTYPE html>
<html>
<title>Common Rooms</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/css_file_one.css">
<link rel="stylesheet" href="css/css_file_two.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link href='https://fonts.googleapis.com/css?family=Aclonica' rel='stylesheet'>
<link rel="icon" type="image/png" href="images/logo.png" />
<style>
body,h1,h2,h3,h4,h5,h6 {font-family: "Aclonica ", sans-serif;}
body, html {
height: 100%;
color: #777;
line-height: 1.8;
}
/* Create a Parallax Effect */
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
background-size: cover;
}
/* First image (Logo. Full height) */
.bgimg-1 {
background-image: url('images/hall2.jpg');
min-height: 100%;
}
/* Second image (Portfolio) */
.bgimg-2 {
background-image: url("images/hall2_2.jpg");
min-height: 400px;
}
.w3-wide {letter-spacing: 10px;}
.w3-hover-opacity {cursor: pointer;}
/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
.bgimg-1, .bgimg-2, .bgimg-3 {
background-attachment: scroll;
}
}
</style>
<script >
var i = 0;
var txt = 'HALL 2 COMMON ROOMS';
var speed = 100;
var j = 1;
function typeWriter() {
if (i < txt.length) {
document.getElementById("self-type").innerHTML += txt.charAt(i);
i++;
setTimeout(typeWriter, speed);
}
}
</script>
<body onload="typeWriter()">
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar" id="myNavbar">
<a class="w3-bar-item w3-button w3-hover-black w3-hide-medium w3-hide-large w3-right" href="javascript:void(0);" onclick="toggleFunction()" title="Toggle Navigation Menu">
<i class="fa fa-bars"></i>
</a>
<a href="#home" class="w3-bar-item w3-button">HOME</a>
<a href="index.html#about" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-user"></i> ABOUT</a>
<a href="am.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-book"></i> ACADEMICS</a>
<a href="mess.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-cutlery"></i> MESS</a>
<a href="tv-rr.html" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-tv"></i> COMMON ROOMS</a>
<a href="facilities.html" target="_blank" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-cogs"></i> FACILITIES</a>
<a href="team/team.html" target="_blank" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-users"></i> TEAM</a>
<a href="index.html#contact" class="w3-bar-item w3-button w3-hide-small"><i class="fa fa-envelope"></i> CONTACT</a>
<a href="gallery_index.html" class="w3-bar-item w3-button w3-hide-small w3-right w3-hover-red">
<i class="fa fa-instagram"></i>GALLERY
</a>
</div>
<!-- Navbar on small screens -->
<div id="navDemo" class="w3-bar-block w3-white w3-hide w3-hide-large w3-hide-medium">
<a href="index.html#about" class="w3-bar-item w3-button" onclick="toggleFunction()"><i class="fa fa-user"></i> ABOUT</a>
<a href="am.html" class="w3-bar-item w3-button" onclick="toggleFunction()"><i class="fa fa-book"></i> ACADEMICS</a>
<a href="mess.html" class="w3-bar-item w3-button" onclick="toggleFunction()"><i class="fa fa-cutlery"></i> MESS</a>
<a href="tv-rr.html" class="w3-bar-item w3-button "><i class="fa fa-tv"></i> COMMON ROOMS</a>
<a href="facilities.html" target="_blank" class="w3-bar-item w3-button "><i class="fa fa-cogs"></i> FACILITIES</a>
<a href="team/team.html" target="_blank" class="w3-bar-item w3-button" onclick="toggleFunction()"><i class="fa fa-users"></i> TEAM</a>
<a href="index.html#contact" class="w3-bar-item w3-button" onclick="toggleFunction()"><i class="fa fa-envelope"></i> CONTACT</a>
<a href="gallery_index.html" class="w3-bar-item w3-button" target="_blank"><i class="fa fa-instagram"></i> GALLERY</a>
</div>
</div>
<!-- First Parallax Image with Logo Text -->
<div class="bgimg-1 w3-display-container w3-opacity-min" id="home">
<div class="w3-display-middle" style="white-space:nowrap;">
<span class="w3-center w3-padding-large w3-black w3-xlarge w3-wide w3-animate-opacity" id="self-type"></span>
</div>
</div>
<!-- Container (About Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="w3-center slide-text">READING ROOM</h3>
<p>Hall 2 has an exclusive room for keeping the newspapers, periodicals, magazines, along with some novels, called the Reading Room. It has comfortable couches, ample chairs and a table for comfortable reading with Air Conditioning facility. Many leading national dailies are kept in the reading room for the benefit of the residents. We have also subscribed to few magazines, which are also stored in the shelves of the reading room. Textbooks and novels gratefully donated by the outgoing seniors also fill those large shelves. The room remains open 24 hours a day. No membership is required to avail the facilities of the reading room.</p>
<div class="w3-row">
<!-- Hide this text on small devices -->
</div>
</div>
<!-- Second Parallax Image with Portfolio Text -->
<div class="bgimg-2 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide" style="color:white;">TV ROOM</span>
</div>
</div>
<!-- Container (Portfolio Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="w3-center slide-text">TV ROOM</h3>
<br> <p>A wide screen, wall mounted, LCD TV, one of the best luxuries provided, is housed in the large TV Room of Hall2. This is the place to catch all the not-to-be-missed matches: cricket, football, tennis! Its surely everyones favourite haunt on the night of any final! The room remains open round the clock and you can drop in any time to watch any channel of choice. But the utility of the TV room doesn't end here. It proves to be a multi-purpose room: It is also the Dance Room of Hall2. For this reason, a major portion of one of the walls has been mirrored. Hall level classes by the Counselling Service and Hall level lectures of the tech clubs are also conducted here. It is also the venue of some Quad Sessions during the winters.</p>
</div>
<br><br>
<div class="bgimg-2 w3-display-container w3-opacity-min">
<div class="w3-display-middle">
<span class="w3-xxlarge w3-text-white w3-wide" style="color:white;">COMPUTER ROOM</span>
</div>
</div>
<!-- Container (Portfolio Section) -->
<div class="w3-content w3-container w3-padding-64" id="about">
<h3 class="w3-center slide-text">COMPUTER ROOM</h3>
<br> <p>
A well maintained Computer Room at your service 24 X 7 with high spped internet connection and air conditioning .It proves quiet helpful at times if you don't have laptop . It proves quiet useful during exams time when you don't want to study in your room or want to have a group discussion
</div>
<div class="w3-content w3-container" id="about">
<h3 class="w3-center slide-text">MUSIC ROOM</h3>
<br> <p>
We also have a music room in our hall , if you want to try out some music with your hands or just want to chill . We have Tablas , Guitars and many more equipments.
</div>
<div class="w3-content w3-container" id="about">
<h3 class="w3-center slide-text">GYM</h3>
<br> <p>
We have a gym inside our hall ready to serve residents at all time , it has enough gym equipments to carry out your daily exercises.
</div>
<!--
<div class="w3-content w3-container w3-padding-64" id="portfolio">
<h3 class="w3-center">GALLERY</h3>
<p class="w3-center"><em>Here are some of our latest photos.<br> Click on the images to make them bigger</em></p><br>
-->
<!-- Responsive Grid. Four columns on tablets, laptops and desktops. Will stack on mobile devices/small screens (100% width) -->
<!-- <div class="w3-row-padding w3-center">
<div class="w3-col m3">
<img src="images/hall2_4.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="The mist over the mountains">
</div>
<div class="w3-col m3">
<img src="images/rr.jpeg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="Reading Room">
</div>
<div class="w3-col m3">
<img src="images/hall2_6.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="Bear closeup">
</div>
<div class="w3-col m3">
<img src="images/hall2_7.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="Quads">
</div>
</div>
<div class="w3-row-padding w3-center w3-section">
<div class="w3-col m3">
<img src="/w3images/p5.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="The mist">
</div>
<div class="w3-col m3">
<img src="/w3images/p6.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="My beloved typewriter">
</div>
<div class="w3-col m3">
<img src="/w3images/p7.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="Empty ghost train">
</div>
<div class="w3-col m3">
<img src="/w3images/p8.jpg" style="width:100%" onclick="onClick(this)" class="w3-hover-opacity" alt="Sailing">
</div>
<button class="w3-button w3-padding-large w3-light-grey" style="margin-top:64px">LOAD MORE</button>
</div>
</div>
-->
<!-- Modal for full size images on click-->
<!-- <div id="modal01" class="w3-modal w3-black" onclick="this.style.display='none'">
<span class="w3-button w3-large w3-black w3-display-topright" title="Close Modal Image"><i class="fa fa-remove"></i></span>
<div class="w3-modal-content w3-animate-zoom w3-center w3-transparent w3-padding-64">
<img id="img01" class="w3-image">
<p id="caption" class="w3-opacity w3-large"></p>
</div>
</div>
-->
<!-- Third Parallax Image with Portfolio Text -->
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-64 w3-opacity w3-hover-opacity-off">
<a href="#home" class="w3-button w3-light-grey"><i class="fa fa-arrow-up w3-margin-right"></i>To the top</a>
<!-- <div class="w3-xlarge w3-section">
<i class="fa fa-facebook-official w3-hover-opacity"></i>
<i class="fa fa-instagram w3-hover-opacity"></i>
<i class="fa fa-snapchat w3-hover-opacity"></i>
<i class="fa fa-pinterest-p w3-hover-opacity"></i>
<i class="fa fa-twitter w3-hover-opacity"></i>
<i class="fa fa-linkedin w3-hover-opacity"></i>
</div> -->
<p>Powered by HALL II</a></p>
<br><!--
<p>Developed by<a href="faceook.com/piyush.patel.319" target="_blank"> Piyush Patel</a></p> -->
</footer>
<!-- Add Google Maps -->
<script>
// Change style of navbar on scroll
window.onscroll = function() {myFunction()};
function myFunction() {
var navbar = document.getElementById("myNavbar");
if (document.body.scrollTop > 100 || document.documentElement.scrollTop > 100) {
navbar.className = "w3-bar" + " w3-card" + " w3-animate-top" + " w3-white";
} else {
navbar.className = navbar.className.replace(" w3-card w3-animate-top w3-white", "");
}
}
// Used to toggle the menu on small screens when clicking on the menu button
function toggleFunction() {
var x = document.getElementById("navDemo");
if (x.className.indexOf("w3-show") == -1) {
x.className += " w3-show";
} else {
x.className = x.className.replace(" w3-show", "");
}
}
</script>
</body>
</html>