-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
114 lines (106 loc) · 4.48 KB
/
privacy.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Privacy Policy | DWC</title>
<link rel="shortcut icon" href="./icons/Logo.svg" type="image/x-icon" />
<link href="https://fonts.googleapis.com/css2?family=Geologica:wght@100..900&display=swap" rel="stylesheet" />
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/privacypolicy.css" />
</head>
<body>
<navbar-component></navbar-component>
<main>
<section class="hero" data-label="hero">
<h1>
<heading-component text="Privacy Policy" size="72" sizeMobile="32" data-animate="auto"></heading-component>
</h1>
<br />
<p>At DWC Infrastructure, we value your privacy and are committed to safeguarding your personal information. This
Privacy Policy explains how we collect, use, disclose, and protect information that you provide to us or that we
collect from you when you visit our website or engage our services.</p>
</section>
<section class="features" data-label="features">
<div class="cards">
<article class="card">
<h2>
<monotone-shape height="60px" width="60px"></monotone-shape>
<br>
<heading-component text="Information We Collect" size="32" sizeMobile="32"
data-animate="auto"></heading-component>
</h2>
<br />
<br />
<p>
We may collect personal details like your name, email, phone number, and payment information when you
contact or engage with us. We also collect usage data, including your IP address, browser type, and browsing
behavior, to enhance our services. Our website uses cookies to personalize your experience; you can manage
cookies in your browser settings.
</p>
</article>
<article class="card">
<h2>
<monotone-shape height="60px" width="60px"></monotone-shape>
<br>
<heading-component text="How We Use Your Information" size="32" sizeMobile="32"
data-animate="auto"></heading-component>
</h2>
<br />
<br />
<p>
Your information helps us provide and improve our services. We use it to communicate with you, fulfill your
requests, and send you updates or offers (with your consent). Usage data helps us improve our website and
user experience. You can opt out of marketing communications at any time.
</p>
</article>
<article class="card">
<h2>
<monotone-shape height="60px" width="60px"></monotone-shape>
<br>
<heading-component text="Sharing and Disclosure" size="32" sizeMobile="32"
data-animate="auto"></heading-component>
</h2>
<br />
<br />
<p>
We only share your information with trusted service providers who assist in operations, and as required by
law or for business transfers. All third-party providers handle your information securely and for DWC
Infrastructure’s purposes only.
</p>
</article>
<article class="card">
<h2>
<monotone-shape height="60px" width="60px"></monotone-shape>
<br>
<heading-component text="Retention" size="32" sizeMobile="32" data-animate="auto"></heading-component>
</h2>
<br />
<br />
<p>
We keep your information only as long as necessary for business or legal purposes, after which it’s securely
deleted or anonymized.
</p>
</article>
<article class="card">
<h2>
<monotone-shape height="60px" width="60px"></monotone-shape>
<br>
<heading-component text="Policy Updates" size="32" sizeMobile="32" data-animate="auto"></heading-component>
</h2>
<br />
<br />
<p>
We may update this Privacy Policy occasionally. Continued use of our website or services after changes
indicates acceptance of the revised policy.
</p>
</article>
</div>
</section>
<footer-component></footer-component>
</main>
<script src="./js/script.js" type="module"></script>
<script src="./js/animate.js"></script>
</body>
</html>