-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
149 lines (123 loc) · 4.89 KB
/
index.html
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
146
147
148
149
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="../css/health.css">
<title>Health App</title>
</head>
<body>
<div class="container">
<div class="nav">
<div class="head">
<img src="../images/output-onlinepngtools.png" class="logo">
</div>
<div class="links">
<a href="#boxabout" class="l" id="fs">About</a>
<a href="#service" class="l" id="fs2">Services</a>
</div>
</div>
<div class="slide-container">
<div class="i">
<img src="../images/grpdoc.png" class="grp">
<div class="caption">
<h5 class="chotu"> Welcome to HealthBag</h5>
<p class="mainp">Empowering you to take charge of your health <br>
with AI-driven disease prediction</p>
<a href="#boxabout">
<button class="learn"> Learn more</button>
</a>
</div>
</div>
</div>
<div id="boxabout">
<div class="boximage">
<img src="../images/bluerobo.gif">
</div>
<div class="aboutsec" id="about">
<p class="tablehead">About HealthBag</p></th>
<p class="tablepara">Our website is dedicated to using machine learning to improve disease prediction and prevention.
We believe that with the power of data and algorithms, we can help people identify potential health risks and take proactive steps to maintain their wellbeing.</p></td>
<div class="wedo">
<p class="tablehead">What We do ?</p>
<div class="dopara">
<li>Gather relevant data from user</li>
<li>Use accurate ML based model</li>
<li>Multiple diseases prediction</li>
<li>Gives accurate results</li>
<li>Ensure data privacy and security</li>
</div>
</div>
<img src="../images/My project (1).png" class="this">
</div>
</div>
</div>
</div>
<div class="card" id="service">
<div class="c1">
<div class="cardhead">
<h3>Our Services</h3>
</div>
<div id="cardpara">
<p>We offer complete healthcare to individuals with various<br> health concerns.</p>
</div>
</div>
<div class="c2">
<a href="../template/heart.html">
<div class="card1">
<img src="../images/newheart.png" alt="heart" class="imgheart">
<span>Heart Disease</span>
</div>
</a>
<a href="../template/diabetes.html">
<div class="card1">
<img src="../images/output-onlinepngtools (5).png" alt="heart" class="imgkidney">
<span>Diabetes</span>
</div>
</a>
<a href="../template/liver.html">
<div class="card1">
<img src="../images/output-onlinepngtools (2).png" alt="heart" class="imgkidney">
<span>Liver Disease</span>
</div>
</a>
<a href="../template/covid.html">
<div class="card1">
<img src="../images/output-onlinepngtools (6).png" alt="heart" class="imgkidney">
<span>Covid</span>
</div>
</a>
</div>
</div>
<div class="footer-container">
<div class="footer">
<p>DISCLAIMER: Our website provides disease prediction solely for informational purposes.
The predictions are not intended to be a substitute for professional medical advice, diagnosis, or treatment.</p>
</div>
</div>
</div>
</div>
</body>
<script>
var xhr = new XMLHttpRequest();
xhr.open('HEAD', 'https://liverapi.onrender.com/predict_liver', true);
xhr.send();
</script>
<script>
var xhr1 = new XMLHttpRequest();
xhr1.open('HEAD', 'https://heartapi.onrender.com/predict_heart', true);
xhr1.send();
</script>
<script>
var xhr2 = new XMLHttpRequest();
xhr2.open('HEAD', 'https://diabetesapi.onrender.com/predict_diabetes', true);
xhr2.send();
</script>
<script>
var xhr3 = new XMLHttpRequest();
xhr3.open('HEAD', 'https://covidapi-97mi.onrender.com/predict_covid', true);
xhr3.send();
</script>
</html>