-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
63 lines (57 loc) · 2.12 KB
/
index.php
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
<?php
include 'include/server.php';
?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="width=device-width, initial-scale=1.0" name="viewport">
<title>Medical Diagnosis</title>
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="bootstrap-icons/bootstrap-icons.css">
<link href="css/animate.min.css" rel="stylesheet">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="dist/css/iziToast.min.css">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.bundle.min.js"></script>
<script src="js/sweetalert.js"></script>
<script src="dist/js/iziToast.min.js" type="text/javascript"></script>
<style type="text/css">
body{
background-color: #153097;
background-image: url('img/footer-map.png');
}
</style>
</head>
<body>
<script>
// iziToast.success({
// title: 'Success',
// message: 'Meal added to cart!',
// position: 'topLeft',
// animateInside: true,
// });
</script>
<section id="home">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3>Heart Disease <br><span>Diagnosis App</span></h3>
<p>Simplify Medical App for diagnosis heart problems using logical questions. </p>
</div>
<div class="col-6">
<div class="box-1 shadow">
</div>
<a href="user/">Get started <span class="bi bi-arrow-right"></span></a>
</div>
<div class="col-6">
<div class="box-2 shadow">
</div>
</div>
</div>
</div>
</section>
<script type="text/javascript" src="js/main.js"></script>
</body>
</html>