-
Notifications
You must be signed in to change notification settings - Fork 0
/
About.html
99 lines (71 loc) · 3.95 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
<html>
<head>
<meta name="viewport" content="with=device-width, initial-scale=1.0">
<link rel="icon" href="logo.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://devutkarshdixit.github.io/utkarshdixitopju/"><img src="logo.png"></a>
<div class="nav-links" id="navLinks">
<i class="fa fa-times" onclick="hideMenu()"></i>
<!-----menu contents-->
<ul>
<li><a href="https://devutkarshdixit.github.io/utkarshdixitopju/">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>University of Steel and Management</h1>
<p>This is about us Page. We have great carrer support through many faculties , Welcome to
OPJU<br>Founded by the Jindal Education and Welfare Society, OP Jindal University (OPJU) was set up
to bring high quality education to its students based on a world class curriculum, the latest
teaching methodology and committed faculty members. The multidisciplinary university aims to develop
young professionals and future leaders who will not only power growth and development in the state,
but also make a mark globally.<br>At the core of the university's philosophy and approach lies the
belief that students learn best when exposed to real world situations and when nurtured through
enriching interactions with practitioners and professors. We at OPJU believe that every student has
innate potential that can be unlocked through quality teaching and mentorship.</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 O. P. Jindal University.<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>© 2021 OP Jindal University, 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://devutkarshdixit.github.io/utkarshdixit/" target="_blank">Utkarsh Dixit</a></p>
</section>
<script src="script.js"></script>
</body>
</html>