-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.html
More file actions
51 lines (30 loc) · 1.23 KB
/
footer.html
File metadata and controls
51 lines (30 loc) · 1.23 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>DiagnoX.ai</title>
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<!-- <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> -->
</head>
<body>
<!-- Footer Area open -->
<div class="footer" style="position:relative; margin-bottom: -31px;">
<div style="display: flex; justify-content: center; align-items: center; height: 50px; color: #dcdcdd;">
<div class="font-weight-bold display-1" style="font-weight:100;">
<h4>Interested in building high-quality medical AI applications? DiagnoX.ai can help.
<button type="button" class="btn" style="background-color:blueviolet" onclick="contact()">Contact</button>
</h4>
</div>
</div>
</div>
<!-- footer area close -->
</body>
</html>
<script>
function contact() {
location.href='contact-form.php';
}
</script>