-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (100 loc) · 3.6 KB
/
index.html
File metadata and controls
108 lines (100 loc) · 3.6 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy - President Card Game</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
header {
text-align: center;
margin-bottom: 40px;
}
h1 {
color: #2c3e50;
margin-bottom: 10px;
}
.effective-date {
font-style: italic;
color: #7f8c8d;
margin-bottom: 30px;
}
h2 {
color: #3498db;
margin-top: 30px;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
ul {
padding-left: 25px;
}
li {
margin-bottom: 8px;
}
.contact {
background-color: #f8f9fa;
padding: 15px;
border-radius: 5px;
margin-top: 30px;
}
footer {
margin-top: 50px;
text-align: center;
font-size: 0.9em;
color: #7f8c8d;
}
</style>
</head>
<body>
<header>
<h1>Privacy Policy for President Card Game</h1>
<p class="effective-date">Effective Date: March 18, 2025</p>
</header>
<section>
<h2>Introduction</h2>
<p>Thank you for playing President Card Game. This Privacy Policy explains how we handle information when you use our mobile application.</p>
</section>
<section>
<h2>Information We Don't Collect</h2>
<p>President Card Game is designed with your privacy in mind. We do not collect, use, store, or share any personal information about you. Specifically:</p>
<ul>
<li>We do not collect your name, email address, or any contact information</li>
<li>We do not track your location</li>
<li>We do not collect device identifiers</li>
<li>We do not use analytics tools to track your behavior</li>
<li>We do not share any information with third parties</li>
<li>We do not use cookies or similar tracking technologies</li>
</ul>
</section>
<section>
<h2>Gameplay Information</h2>
<p>All game data, including game progress and statistics, is stored locally on your device. This information never leaves your device and is not accessible to us or any third parties.</p>
</section>
<section>
<h2>Children's Privacy</h2>
<p>Our application does not collect personal information from anyone, including children under the age of 13.</p>
</section>
<section>
<h2>Third-Party Services</h2>
<p>President Card Game does not use any third-party services, analytics tools, or advertising networks that would collect information about you.</p>
</section>
<section>
<h2>Changes to This Privacy Policy</h2>
<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page and updating the "Effective Date" at the top.</p>
</section>
<section class="contact">
<h2>Contact Us</h2>
<p>If you have any questions about this Privacy Policy, please contact me at: <a href="mailto:zrandles@gmail.com">zrandles@gmail.com</a>.</p>
</section>
<footer>
<p>© 2025 President Card Game. All rights reserved.</p>
</footer>
</body>
</html>