-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIndex.html
More file actions
45 lines (44 loc) · 1.89 KB
/
Index.html
File metadata and controls
45 lines (44 loc) · 1.89 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
<!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 href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css">
<title>Sleep Disorder Prediction</title>
</head>
<body class="vh-100 overflow-hidden">
<div class="container text-center">
<h1 class="mt-5 ">Welcome to Sleep Disorder Prediction</h1>
<p class="lead">This is predect a sleep disorder from your a basic infromation.</p>
<a href="prediction.html" class="btn btn-primary">Predictions</a>
</div>
<!-- Footer -->
<footer class="footer">
<div class="footer-container">
<div class="footer-logo">
<h2>Backbencher's Binary Solution</h2>
</div>
<div class="footer-social">
<a href="https://facebook.com" target="_blank" class="social-link">
<img src="facebook.png" alt="Facebook">
</a>
<a href="https://twitter.com" target="_blank" class="social-link">
<img src="twitter.png" alt="Twitter">
</a>
<a href="https://instagram.com" target="_blank" class="social-link">
<img src="image (1).png" alt="Instagram">
</a>
</div>
<div class="footer-contact">
<p>Contact us: backbenchersbinarysolution@gmail.com</a></p>
</div>
<div class="footer-copyright">
<p>© Backbencher's Binary Solution</p>
</div>
</div>
</footer>
</body>
</html>