-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
23 lines (23 loc) · 1.39 KB
/
about.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About</title>
<link rel="stylesheet" href="{{ url_for('serve_static', filename='about.css') }}">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:[email protected]&display=swap" rel="stylesheet">
</head>
<body>
<img src="{{ url_for('serve_static', filename='about.jpg') }}" alt="">
<div>
<h1>ABOUT DIAGNO FUTURE</h1>
<p>
At Diagno Future, we are committed to revolutionizing healthcare through advanced technology. Our cutting-edge disease prediction model leverages the power of machine learning and artificial intelligence to provide accurate and timely predictions, helping healthcare professionals and individuals make informed decisions. By analyzing vast amounts of medical data, we aim to detect diseases early, enhance patient outcomes, and contribute to preventive healthcare. Our team of experts is driven by a shared vision of making healthcare more proactive, personalized, and accessible to all.
</p>
<a href="{{ url_for('predict') }}" target="_blank"><button> Predict Now</button>
</a>
</div>
</body>
</html>