<!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>