-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patheducation.html
More file actions
35 lines (30 loc) · 912 Bytes
/
education.html
File metadata and controls
35 lines (30 loc) · 912 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
35
<!DOCTYPE html>
<html>
<head>
<title>Patient Education</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h2>Patient Education Plan</h2>
<div class="card">
<h3>Recommended Actions</h3>
<ul>
<li>🥗 Eat balanced meals</li>
<li>🚶 Walk at least 30 minutes daily</li>
<li>💊 Take medicines on time</li>
<li>🚭 Avoid smoking & alcohol</li>
</ul>
</div>
<div class="card">
<h3>Visual Guidance</h3>
<img src="https://cdn-icons-png.flaticon.com/512/2965/2965567.png" width="80">
<img src="https://cdn-icons-png.flaticon.com/512/2920/2920261.png" width="80">
<img src="https://cdn-icons-png.flaticon.com/512/3050/3050525.png" width="80">
</div>
<h3>Your Feedback</h3>
<textarea id="educationText" placeholder="Was this information helpful?"></textarea>
<br>
<button id="saveEducation">Submit Feedback</button>
<script src="script.js"></script>
</body>
</html>