-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHostel.html
More file actions
106 lines (79 loc) · 3.63 KB
/
Copy pathHostel.html
File metadata and controls
106 lines (79 loc) · 3.63 KB
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
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<link rel="icon" href="logo1.png" type="image/icon type">
<title>MultiPage Responsive Website</title>
<link rel="stylesheet" href="Style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@1,300;1,400;1,700&display=swap"
rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<button onclick="topFunction()" id="myBtn" title="Go to top"><i class="fa fa-arrow-up"></i></button>
<!----------Sub-Header Section-->
<section class="sub-header">
<nav>
<a href="https://amit14276.github.io/final.github.io/"><img src="logo1.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<!-----menu contents-->
<ul>
<li><a href="https://amit14276.github.io/final.github.io/">HOME</a></li>
<li><a href="About.html">ABOUT</a></li>
<li><a href="Course.html">COURSE</a></li>
<li><a href="Hostel.html">HOSTEL</a></li>
<li><a href="Contact.html">CONTACT</a></li>
</ul>
</div>
<i class="fa fa-bars" onclick="showMenu()"></i>
</nav>
<h1>Our Hostels</h1>
</section>
<!----------Hostel--------->
<section class="hostel">
<h1>Hostel Facilities</h1>
<p>We offer Separate boys and girls hostel with mess and laundry facilities respectively. </p>
<div class="row">
<div class="hostel-col">
<img src="images/room.jpg">
<h3>Rooms</h3>
<p>Great rooms with good ventilation</p>
</div>
<div class="hostel-col">
<img src="images/hostel.jpg">
<h3>Hall Of Residence</h3>
<p>5 storey Building with TV hall at Ground floor</p>
</div>
</div>
<div class="row">
<div class="hostel-col">
<img src="images/volly.jpg">
<h3>Volley Ball Ground</h3>
<p>Volley Ball Ground where we held Inter-state tournaments</p>
</div>
<div class="hostel-col">
<img src="images/court.jpg">
<h3>Basketball Court</h3>
<p>Basketball Court Available </p>
</div>
</div>
</section>
<!------------Footer----------->
<section class="footer">
<h4>About Us</h4>
<p>Pursuit of knowledge through experience is the cornerstone of CMR Institute Of Technology.<br> We aim to build an
institution where students learn by doing, where real world challenges find practical solutions and
innovation happens not by chance, but by design.<br>© 2022 CMR Institute Of Technology, All Rights Reserved.</p>
<div class="icons">
<i class="fa fa-facebook-official"></i>
<i class="fa fa-twitter"></i>
<i class="fa fa-linkedin-square"></i>
<i class="fa fa-instagram"></i>
</div>
<p>Made by<a href="https://amit14276.github.io/final.github.io/" target="_blank">Amit Kumar</a></p>
</section>
<script src="script.js"></script>
</body>
</html>