-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdoctor_list.php
81 lines (74 loc) · 2.69 KB
/
doctor_list.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Doctor List</title>
</head>
<style>
h1 {
font-size: 50px;
text-align: center;
padding-top: 30px;
color: #000066;
}
img {
float: left;
width: 77px;
}
li {
font-size: 24px;
}
h3 {
font-size: 24px;
letter-spacing: 4px;
}
body {
margin: 0;
padding: 0;
font: 400 15px/1.8 Lato, sans-serif;
color: #777;
width: 100%;
height: 100vh;
background-image: url(pic/1.jpg);
background-size: cover;
}
</style>
<body class="container display-4">
<h1 class="text-white shadow-lg">Doctor's List</h1>
<table class="table table-hover table-dark">
<thead>
<tr>
<th scope="col" class="text-center text-warning">Specialist Name</th>
</tr>
</thead>
<tr>
<th class="text-center"><a href="Display_doctor_list_on_users_home_page/medicine.php">Medicine</a></th>
</tr>
<tr>
<th class="text-center"><a href="Display_doctor_list_on_users_home_page/dentist.php">Dentist</a></th>
</tr>
<tr>
<th class="text-center"><a href="Display_doctor_list_on_users_home_page/surgeon.php">Surgeon</a></th>
</tr>
</table>
<div class="container p-5">
<ul class="pager font-weight-bold text-monospace p-5">
<li class="previous"><a href="index.php">Previous Page</a></li>
<li class="next"><a href="View_Doctor_Appointment_Schedule/doctor_schedule_list.php">Next Page</a></li>
</ul>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js"></script>
<?php include "footer.html";?>
</body>
</html>