-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathterms-of-service.html
109 lines (108 loc) · 4.38 KB
/
terms-of-service.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
<!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" />
<title>HeartBond Support - Terms of Service</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f4f4f4;
color: #333;
}
.container {
max-width: 800px;
margin: auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.logo {
text-align: center;
margin-bottom: 20px;
}
.logo img {
width: 192px;
}
h1 {
color: #444;
}
p {
line-height: 1.6;
}
footer {
text-align: center;
padding: 10px 0;
background-color: #fff;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
margin-top: 20px;
}
.feature-image {
text-align: center; /* Center the image */
margin: 20px 0; /* Add some margin above and below */
}
.feature-image img {
max-width: 100%; /* Ensure the image doesn't overflow the container */
height: auto; /* Maintain the aspect ratio */
}
.feature-image p {
font-style: italic; /* Optional: make the text italic for emphasis */
}
.download-buttons {
display: flex; /* Enable flex layout */
justify-content: center; /* Center horizontally */
align-items: center; /* Center vertically */
flex-direction: row; /* Arrange children in a row */
text-align: center; /* Center the badges */
margin: 20px 20px; /* Add some margin above and below */
}
.download-buttons img {
height: 50px; /* Set a fixed height */
width: auto; /* Automatically adjust the width */
margin: 20px; /* Add some margin between badges */
}
.download-buttons a {
text-decoration: none; /* Remove underline */
}
</style>
</head>
<script async src="https://www.googletagmanager.com/gtag/js?id=G-W79YQTESC1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-W79YQTESC1");
</script>
<body>
<div class="container">
<div class="logo">
<img src="image/icon-384.png" alt="HeartBond Logo" />
</div>
<h1>Terms of Service</h1>
<p>
HeartBond is designed for heart rate graphing and personal health tracking. It is not a medical device and should not be used to
diagnose, treat, or manage any medical condition or disorder. Please consult with a healthcare professional for medical care.
</p>
<p>
The heart data displayed comes from devices connected to Health and is based on the technology and methods used by those specific
devices. It is not verified by HeartBond, nor is it intended to be a substitute for professional medical advice.
</p>
<p>
We graph your data according to five-minute intervals, displaying the highest and lowest samples for each time bin in units of bpm. We
do this to make the graph easier to read while maintaining performance to show you many days of data at once.
</p>
<p>For more information on the methods used to collect this data, please consult the documentation of the devices connected to Health.</p>
</div>
<footer>
<p>
© 2023 Daniel Zhang. All Rights Reserved.
<a href="http://heartbond.ikiapps.com/privacy.html">Privacy Policy</a> |
<a href="http://heartbond.ikiapps.com/">Back to Support</a>
</p>
</footer>
</body>
</html>