<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Lung Cancer 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: red;
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>Lung Cancer Prediction Result</h1>
</div>
<div id="main">
<div id="result">
<h2>Prediction Result: <span style="color:red;">HIGH</span> chance of Lung Cancer</h2>
</div>
<b><u>HOWEVER, HERE ARE FEW STEPS TO PREVENT A LUNG CANCER:</u></b>
<b>
<ol>
<li>Quit smoking:</li>
<ul>
<li>If you currently smoke, it is essential to quit smoking immediately.</li>
<li>Seek professional help, such as counseling or medications, to assist with smoking cessation.</li>
</ul>
<li>Avoid exposure to secondhand smoke:</li>
<ul>
<li>Avoid being in environments where others smoke.</li>
<li>Ask family members and friends to refrain from smoking around you.</li>
</ul>
<li>Reduce exposure to harmful substances:</li>
<ul>
<li>Avoid or minimize exposure to asbestos, arsenic, and other carcinogens.</li>
<li>Use protective equipment and follow safety guidelines in potentially hazardous workplaces.</li>
</ul>
<li>Maintain a healthy lifestyle:</li>
<ul>
<li>Eat a balanced diet rich in fruits, vegetables, and whole grains.</li>
<li>Engage in regular physical activity to maintain a healthy weight.</li>
</ul>
<li>Protect yourself from radon:</li>
<ul>
<li>Test your home for radon, a naturally occurring radioactive gas.</li>
<li>If high levels of radon are detected, take steps to reduce exposure.</li>
</ul>
<li>Avoid or limit alcohol consumption:</li>
<ul>
<li>Avoid or minimize alcohol consumption.</li>
<li>Consult with your healthcare provider regarding the appropriate alcohol limits for you.</li>
</ul>
<li>Practice good indoor air quality:</li>
<ul>
<li>Keep your home well-ventilated and free from pollutants.</li>
<li>Avoid using tobacco products indoors.</li>
</ul>
<li>Stay updated with vaccinations:</li>
<ul>
<li>Receive the appropriate vaccinations, such as the flu vaccine and the pneumonia vaccine.</li>
<li>Follow the recommended immunization schedule provided by your healthcare provider.</li>
</ul>
<li>Stay informed and get regular check-ups:</li>
<ul>
<li>Stay updated with the latest information on lung cancer prevention.</li>
<li>Visit your healthcare provider for regular check-ups and screenings.</li>
<li>Discuss your high risk with your doctor and follow their recommendations.</li>
</ul>
</ol>
</b>
<button id="homepage-btn" onclick="window.location.href='/lung'">Try Different Data</button>
<button id="homepage-btn" onclick="window.location.href='/mainpage'">Go to Homepage</button>
</div>
</body>
</html>