2023-10-27 15:44:45 +05:30
|
|
|
<!DOCTYPE html>
|
|
|
|
|
<html>
|
|
|
|
|
<head>
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
|
<link rel="stylesheet" href="nav_bar.css" />
|
|
|
|
|
</head>
|
|
|
|
|
<body>
|
|
|
|
|
<div class="header-container">
|
|
|
|
|
<div>
|
|
|
|
|
<img class="logo" src="img/logo.png" alt="logo image" />
|
|
|
|
|
</div>
|
|
|
|
|
<!--This is the top nav bar-->
|
|
|
|
|
<div class="topnav">
|
2023-10-31 12:50:53 +05:30
|
|
|
<a href="#home">Home</a>
|
|
|
|
|
<a class="active" href="#aboutus">About Us</a>
|
2023-10-27 15:44:45 +05:30
|
|
|
<a href="#doctors">Doctors</a>
|
|
|
|
|
<a href="#department">Department</a>
|
|
|
|
|
<a href="#newsandmedia">New and Media</a>
|
|
|
|
|
<a href="#career">Career</a>
|
|
|
|
|
<a href="#contactus">Contact Us</a>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--Ending of top nav bar-->
|
|
|
|
|
</div>
|
|
|
|
|
</body>
|
|
|
|
|
</html>
|