forked from Ratan5545/Hospital_management_system
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathNurseWard.html
126 lines (109 loc) · 2.8 KB
/
NurseWard.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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<head>
<title>Nurses</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;
}
.shift {
margin-top: 8px;
font-weight: bold;
color: #666;
}
.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>Nurses</h1>
<div class="container">
<div class="card">
<img class="card-img" src="https://via.placeholder.com/300x200.png?text=Day+Shift" alt="Day Shift">
<div class="card-content">
<h2>Day Shift</h2>
<p>Nurses working the day shift typically work from 7:00 AM to 7:00 PM.</p>
<p class="shift">Shift Time: 7:00 AM - 7:00 PM</p>
<a href="NurseData.html" style="
display: inline-block;
padding: 10px;
background-color: blue;
color: white;
text-decoration: none;
border-radius: 5px;">View Nurses</a>
</div>
</div>
<div class="card">
<img class="card-img" src="https://via.placeholder.com/300x200.png?text=Night+Shift" alt="Night Shift">
<div class="card-content">
<h2>Night Shift</h2>
<p>Nurses working the night shift typically work from 7:00 PM to 7:00 AM.</p>
<p class="shift">Shift Time: 7:00 PM - 7:00 AM</p>
<a href="NurseDataNight.html" style="
display: inline-block;
padding: 10px;
background-color: blue;
color: white;
text-decoration: none;
border-radius: 5px;">View Nurses</a>
</div>
</div>
</div>
<style>
body {
background-image: url('Nurse.JPG');
background-repeat: no-repeat;
}
</style>
</body>
</html>