-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathabout.html
111 lines (88 loc) · 4.64 KB
/
about.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us</title>
<link rel="icon" href="images/Ramdeobaba-Logo.png" type="image/png">
<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=Poppins:wght@100;200;300;400;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<section class="sub-header sub-header-image-1">
<nav>
<a href="index.html"><img src="images/Ramdeobaba-Logo.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="course.html">COURSES</a></li>
<li><a href="blog.html">BLOG</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 content-------- -->
<section class="about-us">
<div class="row">
<div class="about-col">
<h1>Shri Ramdeobaba College of Engineering and Management</h1>
<p>
Ramdeobaba College of Engineering and Management, Nagpur founded in 1984 gives an idyllic setting where individuals are honed to be ethical professionals. RCOEM has been recognized for its commitment to excellence to technical education. The reputation that RCOEM has earned comes from the efforts, contributions and achievements of our thousands of stakeholders.
</p>
<p>
Our community of students, professors, staff and alumni shares a commitment to diligence and make sincere efforts towards the advancement of the society through creativity and innovation. RCOEM is the temple of knowledge devoted to innovative learning, creativity and effective application of knowledge and values for sustainable development.
</p>
<a href="http://www.rknec.edu/About/Administration/Principal-Office.aspx" class="hero-btn red-btn">EXPLORE NOW</a>
</div>
<div class="about-col">
<img src="images/about2.jpg" alt="">
</div>
</div>
</section>
<!-- ------- COURSE ------- -->
<!-- ------- CAMPUS ------- -->
<!-- -------FACILITIES------- -->
<!-- -------Testimonials------- -->
<!-- --------Call to Action ------- -->
<!-- ------- Footer ------- -->
<section class="footer">
<h4>About us</h4>
<p>
RCOEM is one of the best engineering college in Nagpur, Maharashtra with AN ISO 9001:2015
certified Institution. NAAC ACCREDITED with 'A' Grade.
</p>
<div class="icons">
<a class="plain-link" href="https://twitter.com/RCOEM_Official"><i class="fa fa-twitter"></i></a>
<a class="plain-link" href="https://www.facebook.com/Shri-Ramdeobaba-College-of-Engineering-and-Management-Nagpur-India-301344790226543/?skip_nax_wizard=true"><i class="fa fa-facebook"></i></a>
<a class="plain-link" href="https://www.instagram.com/rcoem__official"><i class="fa fa-instagram"></i></a>
<a class="plain-link" href="https://www.youtube.com/channel/UCufL_1MVGtcmLjm2rQFBY9g"><i class="fa fa-youtube"></i></a>
</div>
<p>
Made by Devang Baheti
<br>
Copyright @ 2021
<a class="plain-link icons-blue" href="https://www.linkedin.com/in/devang-baheti/"><i class="fa fa-linkedin"></i></a>
<a class="plain-link icons-blue" href="https://github.com/devangbaheti03"><i class="fa fa-github"></i></a>
<a class="plain-link icons-blue" href="https://www.instagram.com/devang_baheti/"><i class="fa fa-instagram"></i></a>
<a class="plain-link icons-blue" href="mailto:[email protected]"><i class="fa fa-at"></i></a>
</p>
</section>
<!-- -------------JavaScript for toggle menu------------ -->
<script>
var navLinks = document.getElementById("navLinks");
function showMenu(){
navLinks.style.right = "0";
}
function hideMenu(){
navLinks.style.right = "-200px";
}
</script>
</body>
</html>