-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy_policy.html
83 lines (78 loc) · 2.59 KB
/
privacy_policy.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
<!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>
/* Base Styles */
body {
font-family: 'Roboto', Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f9f9f9;
color: #333;
line-height: 1.6;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background: #fff;
border-radius: 8px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
h1, h2 {
color: #444;
}
h1 {
font-size: 2rem;
margin-bottom: 10px;
}
h2 {
font-size: 1.5rem;
margin-top: 30px;
margin-bottom: 10px;
}
p {
font-size: 1rem;
margin: 10px 0;
}
a {
color: #007BFF;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
/* Section Titles */
.section-title {
margin-top: 30px;
padding-bottom: 5px;
border-bottom: 2px solid #eaeaea;
}
/* Contact Section Links */
.contact-links {
display: flex;
flex-direction: column;
gap: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1><strong>Privacy Policy</strong></h1>
<p><em>Last updated: Nov 20, 2024</em></p>
<h2 class="section-title"><strong>Permissions</strong></h2>
<p>We currently do not ask for any special permissions of your device such as GPS, camera, contacts, storage, etc., because the App currently does not rely on them.</p>
<h2 class="section-title"><strong>Data Safety</strong></h2>
<p>We are committed to protecting your personal information and your right to privacy. We do not collect, store, or share your personal information. We do not share your information with third-party services.</p>
<h2 class="section-title"><strong>Contact Us</strong></h2>
<p>If you want further information about our Privacy Policy, please feel free to contact us:</p>
<div class="contact-links">
<a href="mailto:mobarokop@yahoo.com?subject=Hi&body=App%20Name">Email: mobarokop@yahoo.com</a>
<a href="http://mobarokop.github.io" target="_blank" rel="noopener">Visit My Portfolio</a>
</div>
</div>
</body>
</html>