-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
35 lines (31 loc) · 1014 Bytes
/
header.php
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Medical Management System</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="style.css">
<style>
.error {color: #FF0000;}
</style>
</head>
<body>
<div class="container-fluid">
<div class="header_top">
<!-- <a href="index.php"><img src="img/dash2.jpg" alt="logo.png img"></a> -->
<span style="font-size:50px;color:#2c2f84;font-weight:bolder;margin-left:15px;">Doctor Appoinment System</span>
</div>
<!-- this is for menu -->
<div class="navbar navbar-default nav">
<nav class="menu">
<ul>
<li><a href="index.php">Home</a></li>
<li><a href="medical_college.php">Medical College</a></li>
<li><a href="doctorinfo.php">Medical Doctors</a></li>
<li><a href="about.php">About Us</a></li>
<li><a href="contactus.php">Contact Us</a></li>
<li><a href="signin.php">User Login</a></li>
</ul>
</nav>
</div>