-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAbout.html
More file actions
100 lines (72 loc) · 4.05 KB
/
Copy pathAbout.html
File metadata and controls
100 lines (72 loc) · 4.05 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
<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>About Us</h1>
</section>
<!------About Us ------------->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>CMR Institute Of Technology</h1>
<p>Established in 2000, the CMR Institute of Technology imparts quality, pragmatic education in engineering
and management to help students hone their analytical abilities and develop their creative thinking
skills.<br>CMRIT meets the rapidly growing need for technology professionals by nurturing young minds
in an innovative and progressive learning environment. Situated in the very heart of South India’s IT
corridor, the CMRIT campus in Whitefield, Bangalore is centrally located, well connected and easily
accessible.<br>At CMRIT, we are dedicated to holding aloft the flame of Sri Chikka Muniyappa Reddy’s
dreams. Towards this end, we are committed to promoting technical education as a catalyst to the growth
and development of the country and society at large. With world-class infrastructure and experienced faculty,
CMR Institute of Technology is the preferred destination for technocrats and managers who wish to shape the
future.</p>
<a href="Course.html" class="btn red-btn">Explore now</a>
</div>
<div class="about-col">
<img src="images/about.jpg">
</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>