-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathquestions.html
80 lines (74 loc) · 3.35 KB
/
questions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: linear-gradient(to bottom, #001515, #000);
color: #fff;
}
#survey-container {
max-width: 800px;
margin: 50px auto;
padding: 20px;
background: rgba(255, 255, 255, 0.1);
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
ol {
list-style-type: none;
padding: 0;
}
li {
margin-bottom: 10px;
}
</style>
<title>Survey Questions</title>
</head>
<body>
<div id="survey-container">
<h1>Healthcare Facility Survey</h1>
<ol>
<li>When did you complete this survey?</li>
<li>On which date did you receive healthcare services?</li>
<li>What is your full name?</li>
<li>What is your unique patient identification number?</li>
<li>In which city do you reside?</li>
<li>What is your contact number?</li>
<li>How old are you?</li>
<li>Are you male, female, or prefer not to say?</li>
<li>Which department of the hospital did you visit?</li>
<li>How satisfied were you with the help desk services (Billing and admission procedures, health insurance, hospital policies, patient rights, etc.)?</li>
<li>How would you rate the overall processes at the hospital?</li>
<li>Were you satisfied with the waiting time at the outpatient department?</li>
<li>How would you rate the waiting time for admission and discharge procedures?</li>
<li>Were doctors readily available when needed?</li>
<li>How punctual were the doctors in attending to your needs?</li>
<li>How would you rate the overall quality of doctors?</li>
<li>Were specialists readily available?</li>
<li>How satisfied were you with the accuracy of your diagnosis?</li>
<li>How would you rate the quality of the hospital's infrastructure?</li>
<li>Were the medical equipment of high quality and readily available?</li>
<li>How satisfied were you with the behavior of the general staff?</li>
<li>Were the nursing staff responsive to your needs in a timely manner?</li>
<li>How would you rate the overall efficiency of the nursing staff?</li>
<li>How satisfied were you with the quality of diagnostic services?</li>
<li>Were necessary drugs readily available?</li>
<li>Were you introduced to any digital health tools during your visit?</li>
<li>How satisfied were you with the care and guidance provided before and after the operation/treatment?</li>
<li>How efficient was the hospital in handling unexpected emergencies and complications?</li>
<li>How satisfied were you with the accessibility and accuracy of your medical information in the hospital's EMR system?</li>
<li>Were you satisfied with the hospital's use of telemedicine or virtual health services?</li>
<li>How would you rate the hygiene and cleanliness of the hospital?</li>
<li>Were you satisfied with the quality and quantity of food provided?</li>
<li>How would you rate the amenities provided for your family and relatives?</li>
<li>How satisfied were you with your overall experience at the healthcare facility?</li>
<li>Would you consider visiting the healthcare facility again?</li>
</ol>
</div>
</body>
</html>