ABC-University / about.html
mohitkr827's picture
Upload 6 files
a58b859
raw
history blame
No virus
3.03 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ABC University</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=Raleway:ital,wght@0,200;0,400;0,600;0,700;1,200;1,300;1,600;1,800&display=swap" rel="stylesheet">
<link href="https://cdn.lineicons.com/3.0/lineicons.css" rel="stylesheet">
</head>
<body>
<section class="sub-header">
<nav>
<a href="/index.html"><img src="images\logo.png"> </a>
<div class="nav-links" id="navlinks">
<i class="lni lni-close" onclick="hideMenu()"></i>
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="admission.html">ADMISSION</a></li>
<li><a href="feedback.html">FEEDBACK</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</div>
<i class="lni lni-menu" onclick="showMenu()"></i>
</nav>
<h1>About Us</h1>
</section>
<!--conetnt-->
<section class="abt">
<div class="row">
<div class="abt-col">
<h1>Changing the world through education, for 100 years now.</h1>
<p>Established in 1921 in Oslo by Norwegian educationalist I.Forgor and professor D.Natts, ABC University has been
delivering quality education to students around the globe. Havaing two international branches in Oslo and Pune,
ABC takes pride in having produced alumni like Leo Messi, Pablo Escobar, Paul McCartney, Andre Istvan, Albet Einsten
and many more. This goes on to show how ABC shapes a person beyond academics and helps them realise their true potential.
</p>
<a href="contact.html" class="more-btn no-btn">Discover More</a>
</div>
<div class="abt-col">
<img src="images/abt2.jpg" >
</div>
</div>
</section>
<section class="footer">
<h4>Connect with us</h4>
<p>Connect with us on social media to stay updated about us.</p>
<div class="icons">
<i class="lni lni-facebook"></i>
<i class="lni lni-instagram-original"></i>
<i class="lni lni-twitter"></i>
</div>
<p>Made by Mohit Kumar</p>
</section>
<script>
var navlinks=document.getElementById("navlinks");
function showMenu(){
navlinks.style.right= "0";
}
function hideMenu(){
navlinks.style.right="-200px";
}
</script>
</body>
</html>