-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (52 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
58 lines (52 loc) · 1.63 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
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
line-height: 1.6;
color: #333;
background-color: #fafafa;
}
h1 {
color: #2c3e50;
}
h2 {
color: #34495e;
margin-top: 30px;
}
p, ul {
margin-bottom: 20px;
}
ul {
padding-left: 20px;
}
</style>
</head>
<body>
<h1>Privacy Policy</h1>
<p>The Subys application is designed to help users manage their subscription tracking.</p>
<h2>Data Collection</h2>
<p>Subys does not collect or store personal information externally. Subscription data is stored locally on your device.</p>
<h2>Advertising</h2>
<p>The app uses Google AdMob to display ads. AdMob may collect anonymous device identifiers to show relevant ads.</p>
<h2>Notifications</h2>
<p>The app may send local notifications to remind users of upcoming subscription payments.</p>
<h2>Third-Party Services</h2>
<p>The app uses the following third-party service:
<ul>
<li>Google AdMob</li>
</ul>
</p>
<h2>Data Sharing</h2>
<p>Subys does not sell, share, or transmit your personal data to third parties.</p>
<h2>Changes</h2>
<p>This privacy policy may be updated from time to time.</p>
</body>
</html>