forked from iamrahulmahato/master-web-development
-
Notifications
You must be signed in to change notification settings - Fork 0
/
privacy.html
235 lines (200 loc) · 6.84 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
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
<!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 - Master Web Development</title>
<style>
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.7;
margin: 0;
padding: 0;
background-color: rgb(248,250,252);
color: #333;
}
.container {
max-width: 900px;
margin: 50px auto;
padding: 30px;
background: #ffffff;
border-radius: 15px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
font-size: 2.8rem;
color: #34495e;
margin-bottom: 20px;
border-bottom: 2px solid #3498db;
display: inline-block;
padding-bottom: 5px;
}
h2 {
color: #2c3e50;
margin-top: 30px;
font-size: 1.8rem;
position: relative;
}
h2:before {
content: '';
position: absolute;
height: 2px;
width: 50px;
background-color: #3498db;
bottom: -5px;
left: 0;
}
p {
font-size: 1.1rem;
color: #555;
margin-bottom: 15px;
}
ul {
margin-left: 20px;
margin-bottom: 20px;
color: #444;
}
ul li {
margin-bottom: 10px;
}
a {
color: #3498db;
text-decoration: none;
font-weight: 500;
}
a:hover {
color: #1abc9c;
text-decoration: underline;
}
.button {
display: inline-block;
padding: 10px 20px;
margin-top: 20px;
background-color: #3498db;
color: #ffffff;
text-align: center;
border-radius: 5px;
text-decoration: none;
font-size: 1rem;
transition: background-color 0.3s ease;
}
.button:hover {
background-color: #1abc9c;
}
/* Adding some spacing between sections */
.section-spacing {
margin-bottom: 40px;
}
/* Style for the policy details */
.policy-content {
padding: 20px;
background-color: #f4f8fb;
border-left: 5px solid #3498db;
margin-top: 20px;
border-radius: 10px;
}
/* Styling for the effective date */
.effective-date {
color: #555;
font-weight: bold;
margin-bottom: 20px;
}
@media (max-width: 768px) {
.container {
padding: 20px;
}
h1 {
font-size: 2.2rem;
}
h2 {
font-size: 1.6rem;
}
p {
font-size: 1rem;
}
.button {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<div class="section-spacing">
<p>This Privacy Policy outlines how we collect, use, and safeguard
your data when you visit our website and use our services.</p>
</div>
<h2>1. Information We Collect</h2>
<div class="policy-content">
<p>We collect different types of information to provide and improve our services:</p>
<h3>a) Personal Information</h3>
<p>When you sign up, subscribe, or contact us, we may ask for:</p>
<ul>
<li>Your name</li>
<li>Email address</li>
<li>Contact information</li>
<li>Any other details you voluntarily provide</li>
</ul>
<h3>b) Non-Personal Information</h3>
<p>We may collect non-personal data such as:</p>
<ul>
<li>Browser type and version</li>
<li>Operating system</li>
<li>IP address and location data</li>
<li>Time and date of your visit</li>
</ul>
</div>
<h2>2. How We Use Your Information</h2>
<div class="policy-content">
<p>Your information helps us improve our services and provide a better experience for you. We may use your
data to:</p>
<ul>
<li>Respond to your inquiries and provide support</li>
<li>Send you updates, newsletters, or promotional offers</li>
<li>Improve the website’s functionality and user experience</li>
<li>Analyze website traffic and usage patterns</li>
</ul>
</div>
<h2>3. Cookies and Tracking</h2>
<div class="policy-content">
<p>We use cookies and similar tracking technologies to improve your browsing experience. You can choose to
accept or decline cookies through your browser settings.</p>
</div>
<h2>4. How We Protect Your Data</h2>
<div class="policy-content">
<p>We take your privacy seriously and implement a variety of security measures to protect your data from
unauthorized access, disclosure, or alteration.</p>
</div>
<h2>5. Third-Party Services</h2>
<div class="policy-content">
<p>We may use third-party services to assist us in operating our website. These services have their own
privacy policies, and we recommend reviewing them to understand how they handle your data.</p>
</div>
<h2>6. Your Rights</h2>
<div class="policy-content">
<p>You have the right to:</p>
<ul>
<li>Access the personal information we hold about you</li>
<li>Request corrections or updates to your information</li>
<li>Request deletion of your data, subject to legal obligations</li>
</ul>
</div>
<h2>7. Changes to This Privacy Policy</h2>
<div class="policy-content">
<p>We may update this Privacy Policy from time to time. Any changes will be posted on this page with the
updated effective date.</p>
</div>
<h2>8. Contact Us</h2>
<div class="policy-content">
<p>If you have any questions about this Privacy Policy, please contact us at:</p>
<p>Email: <a href="mailto:[email protected]">[email protected]</a></p>
</div>
<div class="section-spacing">
<a href="/" class="button">Return to Home</a>
</div>
</div>
</body>
</html>