forked from Ratan5545/Hospital_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Treatment Details.html
86 lines (78 loc) · 1.96 KB
/
Treatment Details.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
<!DOCTYPE html>
<html>
<head>
<title>Treatment Details</title>
<link rel="stylesheet" type="text/css" href="Treatment Details.css">
</head>
<body>
<div class="container">
<h1>Treatment Details</h1>
<table>
<thead>
<tr>
<th>T-Id</th>
<th>Treatment</th>
<th>Price</th>
</tr>
</thead>
<tbody>
<tr>
<td> 1 </td>
<td>Teeth Cleaning</td>
<td>Rs.100</td>
</tr>
<tr>
<td> 2 </td>
<td>Root Canal</td>
<td>Rs.500</td>
</tr>
<tr>
<td> 3 </td>
<td>Chemotherapy</td>
<td>Rs.200</td>
</tr>
<tr>
<td> 4 </td>
<td>Skin Specialist</td>
<td>Rs300</td>
</tr>
<tr>
<td> 5 </td>
<td>kidney transplation</td>
<td>Rs30000</td>
</tr>
<tr>
<td> 6 </td>
<td>Neurology</td>
<td>Rs5000</td>
</tr>
<tr>
<td> 7 </td>
<td>Laproscopy</td>
<td>Rs1000</td>
</tr>
<tr>
<td> 8 </td>
<td>Orthopedics</td>
<td>Rs100</td>
</tr>
<tr>
<td> 9 </td>
<td>Blood transfusion</td>
<td>Rs300</td>
</tr>
<tr>
<td> 10 </td>
<td>Cardiology centre</td>
<td>Rs600</td>
</tr>
</tbody>
</table>
</div>
</style>
<a href="treatment appointment.html" class="btn">Take Appointment</a>
<br><br><br>
<a href="NurseWard.html" class="btn">Nurse Details</a>
<a href="Doctor Speciality.html" class="btn">Doctor Details Details</a>
</body>
</html>