-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
112 lines (92 loc) · 5.42 KB
/
privacy.html
File metadata and controls
112 lines (92 loc) · 5.42 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
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | Alpha-Tech</title>
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css">
</head>
<body>
<header>
<div class="container header-container">
<a href="index.html" class="logo">Alpha-Tech</a>
<nav>
<ul class="nav-menu">
<li><a href="index.html">Home</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="faq.html">FAQ</a></li>
<li><a href="terms.html">Terms</a></li>
<li><a href="privacy.html">Privacy</a></li>
<li><a href="cookie-policy.html">Cookie Policy</a></li>
<li><a href="ethical-guidelines.html">Ethical Guidelines</a></li>
</ul>
</nav>
<div class="header-actions">
<a href="#" aria-label="User login"><i class="fa-solid fa-user"></i></a>
<button id="searchToggle" aria-label="Search"><i class="fa-solid fa-search"></i></button>
<button class="mobile-menu-toggle" id="mobileMenuToggle" aria-label="Menu">
<i class="fas fa-bars"></i>
</button>
</div>
</div>
</header>
<main class="main-content">
<section class="policy-section">
<div class="container">
<div class="policy-content">
<div class="last-updated">Last updated: January 1, 2023</div>
<h2>Privacy Policy</h2>
<h3>1. Information We Collect</h3>
<p>We collect several different types of information for various purposes to provide and improve our service to you:</p>
<ul>
<li><strong>Personal Data:</strong> Name, email address, phone number, billing address</li>
<li><strong>Usage Data:</strong> IP address, browser type, pages visited, time spent</li>
<li><strong>Cookies and Tracking Data:</strong> Session cookies, preference cookies, security cookies</li>
</ul>
<h3>2. How We Use Your Data</h3>
<p>Alpha-Tech uses the collected data for various purposes:</p>
<ul>
<li>To provide and maintain our service</li>
<li>To notify you about changes to our service</li>
<li>To provide customer support</li>
<li>To monitor the usage of our service</li>
<li>To detect, prevent and address technical issues</li>
</ul>
<h3>3. Data Retention</h3>
<p>We will retain your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use your Personal Data to the extent necessary to comply with our legal obligations.</p>
<h3>4. Data Transfer</h3>
<p>Your information, including Personal Data, may be transferred to — and maintained on — computers located outside of your state, province, country or other governmental jurisdiction where the data protection laws may differ.</p>
<h3>5. Your Data Protection Rights</h3>
<p>Depending on your location, you may have the following data protection rights:</p>
<ul>
<li>The right to access, update or delete your information</li>
<li>The right of rectification</li>
<li>The right to object</li>
<li>The right of restriction</li>
<li>The right to data portability</li>
<li>The right to withdraw consent</li>
</ul>
<h3>6. Cookies</h3>
<p>We use cookies and similar tracking technologies to track activity on our service. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent.</p>
<h3>7. Security</h3>
<p>The security of your data is important to us. We use commercially acceptable means to protect your Personal Data, but remember that no method of transmission over the Internet is 100% secure.</p>
<h3>8. Children's Privacy</h3>
<p>Our service does not address anyone under the age of 18. We do not knowingly collect personally identifiable information from anyone under 18.</p>
<h3>9. Changes to This Policy</h3>
<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.</p>
<h3>10. Contact Us</h3>
<p>If you have any questions about this Privacy Policy, please contact us at privacy@alpha-tech.com.</p>
</div>
</div>
</section>
</main>
<footer>
<!-- Same footer as index.html -->
</footer>
<button class="back-to-top" id="backToTop">
<i class="fas fa-arrow-up"></i>
</button>
<script src="scripts.js"></script>
</body>
</html>