[e55501]: / templates / chroresult2.html

Download this file

146 lines (126 with data), 4.3 kB

  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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Heart Disease Prediction Result</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url('https://www.medicaldevice-network.com/wp-content/uploads/sites/23/2022/08/shutterstock_1936358704.jpg');
background-repeat: no-repeat;
background-size: cover;
background-position: center;
margin: 0;
padding: 0;
}
#header {
background-color: #333;
color: #fff;
padding: 20px;
text-align: center;
}
h1 {
margin: 0;
font-size: 28px;
}
#main {
padding: 50px;
text-align: center;
}
#result {
font-size: 24px;
background-color:aqua;
color: #e60000;
margin-bottom: 30px;
}
ul {
list-style-type: disc;
text-align: left;
margin-bottom: 30px;
padding-left: 20px;
}
li {
margin-bottom: 10px;
}
#homepage-btn {
padding: 10px 20px;
background-color: #333;
color: #fff;
border: none;
border-radius: 5px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.2s;
}
#homepage-btn:hover {
background-color: #555;
}
</style>
</head>
<body>
<div id="header">
<h1>Heart Disease Prediction Result</h1>
</div>
<div id="main">
<div id="result">
<h2><u> Prediction Result: <span style="color: #e60000;">HIGH</span> chance of Chronic Heart Disease</u></h2>
</div>
<b><u>DON'T WORRY! HERE ARE FEW STEPS YOU NEED TO FOLLOW TO MAINTAIN A HEALTHY LIFESTYLE</u></b>
<ol>
<li>Follow your doctor's advice:</li>
<ul>
<li>Take prescribed medications as directed.</li>
<li>Follow any dietary restrictions or guidelines provided.</li>
</ul>
<li>Maintain a heart-healthy diet:</li>
<ul>
<li>Avoid foods high in saturated and trans fats.</li>
<li>Limit salt intake to manage blood pressure.</li>
<li>Include plenty of fruits, vegetables, whole grains, and lean proteins.</li>
</ul>
<li>Stay physically active within your limits:</li>
<ul>
<li>Engage in low-impact exercises recommended by your doctor.</li>
<li>Avoid strenuous activities that may strain your heart.</li>
</ul>
<li>Manage stress:</li>
<ul>
<li>Practice relaxation techniques like deep breathing or meditation.</li>
<li>Engage in activities that help you relax and reduce stress.</li>
</ul>
<li>Avoid smoking and secondhand smoke:</li>
<ul>
<li>Quit smoking if you currently smoke.</li>
<li>Avoid exposure to secondhand smoke.</li>
</ul>
<li>Monitor and manage your blood pressure:</li>
<ul>
<li>Regularly check your blood pressure at home.</li>
<li>Take prescribed medications to control high blood pressure.</li>
</ul>
<li>Manage your cholesterol levels:</li>
<ul>
<li>Follow a low-cholesterol diet.</li>
<li>Take prescribed medications to control high cholesterol.</li>
</ul>
<li>Control your blood sugar levels (if you have diabetes):</li>
<ul>
<li>Follow your diabetes management plan.</li>
<li>Monitor your blood sugar levels regularly.</li>
</ul>
<li>Maintain a healthy weight:</li>
<ul>
<li>Work with your healthcare provider to set weight loss or maintenance goals.</li>
<li>Follow a balanced diet and engage in regular physical activity.</li>
</ul>
<li>Attend regular check-ups and screenings:</li>
<ul>
<li>Visit your healthcare provider as scheduled.</li>
<li>Undergo tests and screenings to monitor your heart health.</li>
</ul>
</ol>
<button id="homepage-btn" onclick="window.location.href='/heart'">Try Different Data</button>
<button id="homepage-btn" onclick="window.location.href='/mainpage'">Go to Homepage</button>
</div>
</body>
</html>