forked from Ratan5545/Hospital_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoctor Speciality.html
91 lines (89 loc) · 2.89 KB
/
Doctor Speciality.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
87
88
89
90
91
<!DOCTYPE html>
<html>
<head>
<title>Doctor Specialties</title>
<style>
/* CSS styling goes here */
body {
font-family: Arial, sans-serif;
background-color: #f5f5f5;
}
h1 {
text-align: center;
color: #003399;
}
.container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.card {
width: 300px;
margin: 16px;
box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
transition: 0.3s;
border-radius: 5px;
background-color: #fff;
}
.card:hover {
box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
}
.card-img {
width: 100%;
height: 200px;
object-fit: cover;
border-radius: 5px 5px 0 0;
}
.card-content {
padding: 16px;
}
h2 {
margin-top: 0;
margin-bottom: 8px;
color: #003399;
}
p {
margin: 0;
}
.button {
background-color: #003399;
border: none;
color: #fff;
padding: 8px 16px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 14px;
margin-top: 16px;
border-radius: 5px;
cursor: pointer;
}
</style>
</head>
<body>
<h1>Doctor Specialties</h1>
<div class="container">
<div class="card">
<img class="card-img" src="https://via.placeholder.com/300x200.png?text=Cardiology" alt="Cardiology">
<div class="card-content">
<h2>Cardiology</h2>
<p>Cardiologists are specialists who diagnose and treat conditions related to the heart and blood vessels.</p>
<button class="button"><a href="cardiology.html"style ="color: white" class="btn">View Doctor</a></button>
</div>
</div>
<div class="card">
<img class="card-img" src="https://via.placeholder.com/300x200.png?text=Neurology" alt="Neurology">
<div class="card-content">
<h2>Neurology</h2>
<p>Neurologists are specialists who diagnose and treat conditions related to the brain and nervous system.</p>
<button class="button"><a href="Neurology.html"style ="color: white" class="btn">View Doctor</a></button>
</div>
</div>
<div class="card">
<img class="card-img" src="https://via.placeholder.com/300x200.png?text=Orthopedics" alt="Orthopedics">
<div class="card-content">
<h2>Orthopedics</h2>
<p>Orthopedic surgeons are specialists who diagnose and treat conditions related to the musculoskeletal system, including bones, joints, ligaments, tendons, and muscles.</p>
<button class="button"><a href="Orthopedics.html"style ="color: white" class="btn">View Doctor</a></button>
</div>
</html>