-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
144 lines (124 loc) · 5.38 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
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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Terminus Calculator</title>
<meta name="description" content="Privacy policy for the Terminus Calculator website. Learn how we protect your data and respect your privacy.">
<link rel="canonical" href="https://terminuscalculators.org/privacy-policy.html" />
<!-- 使用与主页相同的样式 -->
<style>
/* 复制主页的CSS变量和基础样式 */
:root {
--primary-color: #0066ff;
--secondary-color: #e6f0ff;
--text-color: #333;
--background-color: #f8f9fa;
--border-radius: 12px;
--box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}
body {
font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
line-height: 1.6;
color: var(--text-color);
background: var(--background-color);
margin: 0;
padding: 0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 2rem;
}
.privacy-section {
background: white;
padding: 2rem;
border-radius: var(--border-radius);
box-shadow: var(--box-shadow);
margin-bottom: 2rem;
}
h1 {
color: var(--primary-color);
text-align: center;
margin-bottom: 2rem;
}
h2 {
color: var(--primary-color);
margin-top: 2rem;
}
.last-updated {
text-align: center;
color: #666;
margin-bottom: 2rem;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p class="last-updated">Last Updated: March 14, 2024</p>
<div class="privacy-section">
<h2>1. Introduction</h2>
<p>Welcome to Terminus Calculator ("we," "our," or "us"). We respect your privacy and are committed to protecting your personal data. This privacy policy explains how we handle any information collected when you use our website terminuscalculators.org.</p>
<h2>2. Information We Collect</h2>
<p>We collect and process the following types of information:</p>
<ul>
<li><strong>Usage Data:</strong> Information about how you use our website, including:
<ul>
<li>Pages visited and time spent on pages</li>
<li>Calculator inputs and results</li>
<li>Browser type and version</li>
<li>Operating system</li>
<li>Device information</li>
</ul>
</li>
<li><strong>Technical Data:</strong> IP address, browser type, and other technical details</li>
</ul>
<h2>3. How We Use Your Information</h2>
<p>We use the collected information for:</p>
<ul>
<li>Providing and improving our calculator service</li>
<li>Analyzing usage patterns to enhance user experience</li>
<li>Maintaining website security and preventing fraud</li>
<li>Displaying relevant advertisements</li>
</ul>
<h2>4. Cookies and Tracking</h2>
<p>We use cookies and similar tracking technologies to:</p>
<ul>
<li>Remember your preferences</li>
<li>Analyze site traffic and usage patterns</li>
<li>Enable certain website functionalities</li>
<li>Provide personalized advertisements</li>
</ul>
<h2>5. Third-Party Services</h2>
<p>We use the following third-party services:</p>
<ul>
<li><strong>Google Analytics:</strong> For website traffic analysis</li>
<li><strong>Google AdSense:</strong> For displaying advertisements</li>
<li><strong>Cloudflare:</strong> For security and content delivery</li>
</ul>
<h2>6. Data Security</h2>
<p>We implement appropriate security measures to protect your information, including:</p>
<ul>
<li>Encryption of data in transit</li>
<li>Regular security assessments</li>
<li>Limited access to personal information</li>
<li>Secure data storage practices</li>
</ul>
<h2>7. Your Rights</h2>
<p>You have the right to:</p>
<ul>
<li>Access your personal data</li>
<li>Request correction of your data</li>
<li>Request deletion of your data</li>
<li>Object to data processing</li>
<li>Request data portability</li>
</ul>
<h2>8. Children's Privacy</h2>
<p>Our service is not intended for children under 13 years of age. We do not knowingly collect personal information from children under 13.</p>
<h2>9. Changes to This Policy</h2>
<p>We may update this privacy policy from time to time. We will notify you of any changes by posting the new policy on this page and updating the "Last Updated" date.</p>
</div>
</div>
</body>
</html>