-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
43 lines (35 loc) · 1.13 KB
/
privacy.html
File metadata and controls
43 lines (35 loc) · 1.13 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Privacy Policy</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="page-container">
<h2>Privacy Policy</h2>
<p>
This application stores user data locally on the device using browser storage.
We do not collect, store, or share any personal information.
</p>
<h3>Data Collection</h3>
<p>
The app does not collect personal data such as name, email, or phone number.
All entries created by users remain stored on their own device.
</p>
<h3>Third-Party Services</h3>
<p>
This app may display advertisements provided by third-party ad networks such as Google AdSense.
These services may use cookies to improve ad experience.
</p>
<h3>Contact</h3>
<p>
If you have any questions regarding this Privacy Policy, you may contact us at:
<br><strong>Email:</strong> ankush22004@gmail.com
</p>
<p>Last Updated: 2026</p>
<a href="index.html">⬅ Back to App</a>
</div>
</body>
</html>