[e55501]: / templates / highresult3.html

Download this file

142 lines (123 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
<!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>