-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupport.html
More file actions
34 lines (29 loc) · 760 Bytes
/
support.html
File metadata and controls
34 lines (29 loc) · 760 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Patient Support</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Patient Support Services</h2>
<div class="card">
<h3>Available Medical Support</h3>
<ul>
<li>👩⚕️ Nurse On Call: 24/7</li>
<li>🧑⚕️ Doctor Tele-Consultation</li>
<li>🚑 Emergency Response Team</li>
<li>🧠 Mental Health Counselor</li>
</ul>
</div>
<div class="card">
<h3>Emergency Contacts</h3>
<p>📞 Ambulance: 108</p>
<p>📞 Hospital Helpline: 080-123456</p>
</div>
<h3>Your Feedback</h3>
<textarea id="supportText" placeholder="Any support you need?"></textarea>
<br>
<button id="saveSupport">Submit Support Request</button>
<script src="script.js"></script>
</body>
</html>