Skip to content

Commit 82dcca5

Browse files
authored
Update index.html
1 parent 0d3c9a6 commit 82dcca5

File tree

1 file changed

+1
-133
lines changed

1 file changed

+1
-133
lines changed

index.html

Lines changed: 1 addition & 133 deletions
Original file line numberDiff line numberDiff line change
@@ -1,133 +1 @@
1-
<!DOCTYPE html>
2-
<html lang="en">
3-
<head>
4-
<meta charset="UTF-8">
5-
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6-
<title>Privacy Policy</title>
7-
<style>
8-
body, html {
9-
margin: 0;
10-
padding: 0;
11-
font-family: Arial, sans-serif;
12-
background-color: #f5f5f5;
13-
color: #333;
14-
height: 100%;
15-
overflow-x: hidden;
16-
}
17-
18-
.container {
19-
display: flex;
20-
justify-content: center;
21-
align-items: center;
22-
min-height: 100vh;
23-
padding: 20px;
24-
}
25-
26-
.policy-content {
27-
max-width: 800px;
28-
width: 100%;
29-
background: #fff;
30-
border-radius: 10px;
31-
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
32-
padding: 20px;
33-
opacity: 0;
34-
transform: translateY(-50px);
35-
transition: opacity 1s ease-in-out, transform 1s ease-in-out;
36-
}
37-
38-
.policy-content.visible {
39-
opacity: 1;
40-
transform: translateY(0);
41-
}
42-
43-
h1 {
44-
font-size: 2em;
45-
margin-top: 0;
46-
text-align: center;
47-
color: #007BFF;
48-
}
49-
50-
h2 {
51-
font-size: 1.5em;
52-
color: #0056b3;
53-
margin-bottom: 10px;
54-
}
55-
56-
p {
57-
line-height: 1.6;
58-
margin: 10px 0;
59-
}
60-
61-
.section {
62-
margin-bottom: 20px;
63-
}
64-
65-
.highlight {
66-
background: #e0f7fa;
67-
border-left: 5px solid #007BFF;
68-
padding: 10px;
69-
border-radius: 5px;
70-
}
71-
72-
@keyframes fadeIn {
73-
from { opacity: 0; }
74-
to { opacity: 1; }
75-
}
76-
</style>
77-
</head>
78-
<body>
79-
<div class="container">
80-
<div id="policy-content" class="policy-content">
81-
<h1>Privacy Policy Statement</h1>
82-
<div class="section">
83-
<p>CzechDevelopers takes your privacy very seriously. This Privacy Policy outlines the types of information we collect, how we use and protect that information, and your rights regarding your personal data. By using our app, you agree to the practices described in this policy.</p>
84-
</div>
85-
<div class="section">
86-
<h2>Information Collection and Use</h2>
87-
<p><strong>No Personal Information Collection:</strong> CzechDevelopers DOES NOT collect or store any personal information from users of our app. This includes:</p>
88-
<ul>
89-
<li>Name</li>
90-
<li>Age</li>
91-
<li>Address</li>
92-
<li>Phone Number</li>
93-
<li>Email Address</li>
94-
<li>Device's Location</li>
95-
</ul>
96-
<p><strong>Children's Privacy:</strong> We are particularly committed to protecting the privacy of children. Our app complies with the Children's Online Privacy Protection Act (COPPA) and similar international regulations. CzechDevelopers DOES NOT:</p>
97-
<ul>
98-
<li>Collect children's personal information, including: names, ages, addresses, phone numbers, and location data.</li>
99-
<li>Transmit any personal information to outside parties.</li>
100-
</ul>
101-
</div>
102-
<div class="section">
103-
<h2>User Rights</h2>
104-
<p>As a user, you have rights regarding your personal information:</p>
105-
<ul>
106-
<li><strong>Access:</strong> Since we do not collect personal data, there is no personal information for you to access or review.</li>
107-
<li><strong>Rectification:</strong> If you believe that any information we have is incorrect or incomplete, please contact us, and we will correct it promptly.</li>
108-
<li><strong>Erasure:</strong> Given that we do not collect personal data, there is no data to erase.</li>
109-
</ul>
110-
<p>CzechDevelopers reserves the right to update or modify this Privacy Policy at any time. If we make significant changes to our policies, we will notify you through the app or via email. Your continued use of the app after any modifications indicates your acceptance of the updated policy.</p>
111-
</div>
112-
<div class="section">
113-
<h2>Contact Us</h2>
114-
<p>If you have any questions or concerns about this Privacy Policy or our practices, or if you would like to report a violation of this policy, please contact us at:</p>
115-
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
116-
<p>We are committed to addressing any inquiries or issues promptly and transparently.</p>
117-
</div>
118-
<div class="section">
119-
<h2>Conclusion</h2>
120-
<p>Your privacy and safety are our top priorities. By ensuring that no personal information is collected or transmitted, CzechDevelopers aims to provide a secure environment for all users. We appreciate your trust in our services and are dedicated to maintaining that trust through stringent privacy practices.</p>
121-
</div>
122-
</div>
123-
</div>
124-
125-
<script>
126-
// JavaScript to add animation on page load
127-
window.addEventListener('load', () => {
128-
const policyContent = document.getElementById('policy-content');
129-
policyContent.classList.add('visible');
130-
});
131-
</script>
132-
</body>
133-
</html>
1+
hello i am bubu07

0 commit comments

Comments
 (0)