-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy.html
68 lines (57 loc) · 2.09 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
<!DOCTYPE html>
<html>
<head>
<title>Privacy Policy - Coffee Haven</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}
header {
background-color: #333;
color: #fff;
text-align: center;
padding: 20px;
}
h1 {
margin: 0;
}
.container {
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
h2 {
font-size: 24px;
}
p {
font-size: 16px;
line-height: 1.5;
}
</style>
</head>
<body>
<header>
<h1>Privacy Policy</h1>
</header>
<div class="container">
<h2>Information We Collect</h2>
<p>We may collect personal information such as your name, email address, phone number, and location when you use our website or services.</p>
<h2>How We Use Your Information</h2>
<p>We use the information we collect to provide and improve our services, to contact you, and to send you promotional information.</p>
<h2>Information Sharing</h2>
<p>We do not sell, trade, or otherwise transfer your personal information to outside parties. This does not include trusted third parties who assist us in operating our website or servicing you.</p>
<h2>Security</h2>
<p>We implement a variety of security measures to maintain the safety of your personal information when you enter or submit your personal information.</p>
<h2>Changes to Our Privacy Policy</h2>
<p>If we decide to change our privacy policy, we will post those changes on this page.</p>
<h2>Contact Us</h2>
<p>If you have any questions regarding this privacy policy, you may contact us at [email protected].</p>
</div>
</body>
</html>