-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathprivacy.ejs
127 lines (108 loc) · 3.66 KB
/
privacy.ejs
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
<% layout("/layouts/boilerplate") -%>
<style>body {
font-family: "Plus Jakarta Sams", sans-serif !important;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
flex: 1;
padding: 2rem; /* Add some padding to the main content */
}
/*header*/
header {
text-align: center;
margin-bottom: 2rem;
}
/*footer*/
.f-info-links a {
text-decoration: none;
color: #222222;
}
.f-info-links a:hover {
text-decoration: underline !important;
}
.f-info-socials a {
text-decoration: none;
color: #222222;
}
.f-info-socials a:hover {
color: #000;
}
.f-info-links,
.f-info-socials,
.f-info-brand {
display: flex;
width: 100%;
align-items: center;
justify-content: center;
}
.f-info-socials i {
font-size: 1.3rem !important;
margin-right: 1rem !important;
transition: color 0.3s ease, transform 0.3s ease; /* Added smooth transition */
}
.f-info-socials i:hover {
color: dodgerblue; /* Change icon color on hover */
transform: scale(1.1); /* Slight zoom effect */
}
.f-info {
text-align: center;
height: 5.5rem;
background-color: #ebebeb;
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: space-evenly;
}
</style>
<body>
<header>
<h1>Privacy Policy</h1>
</header>
<main class="container">
<section>
<h2>Introduction</h2>
<p>Your privacy is important to us. This privacy policy explains how we collect, use, and protect your personal information when you use our website.</p>
</section>
<section>
<h2>Information We Collect</h2>
<p>We may collect the following types of information:</p>
<ul>
<li>Personal Information: Such as your name, email address, and contact details when you register or contact us.</li>
<li>Usage Data: Information about how you use our website, including your IP address, browser type, and pages visited.</li>
</ul>
</section>
<section>
<h2>How We Use Your Information</h2>
<p>We use the information we collect for the following purposes:</p>
<ul>
<li>To provide and maintain our website.</li>
<li>To improve our services and user experience.</li>
<li>To communicate with you, including sending updates and promotional materials.</li>
</ul>
</section>
<section>
<h2>Data Protection</h2>
<p>We take reasonable measures to protect your personal information from unauthorized access, disclosure, alteration, and destruction.</p>
</section>
<section>
<h2>Cookies</h2>
<p>Our website uses cookies to enhance your experience. You can choose to accept or decline cookies. Most web browsers automatically accept cookies, but you can usually modify your browser setting to decline cookies if you prefer.</p>
</section>
<section>
<h2>Your Rights</h2>
<p>You have the right to request access to the personal information we hold about you and to request that we correct any inaccuracies.</p>
</section>
<section>
<h2>Changes to This Privacy Policy</h2>
<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>
</section>
<section>
<h2>Contact Us</h2>
<p>If you have any questions about this privacy policy, please contact us at:</p>
<p>Email: support@museum.com</p>
</section>
</main>
</body>
</html>