-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
121 lines (115 loc) · 5.69 KB
/
privacy.html
File metadata and controls
121 lines (115 loc) · 5.69 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
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="description" content="Oslo Museum privacy and policy.">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/privacy.css">
<link rel="stylesheet" href="css/header-footer.css">
<link rel="icon" href="images/logo.png">
<title>Privacy & Policy</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com/" crossorigin>
<link
href="https://fonts.googleapis.com/css2?family=Inria+Sans:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap"
rel="stylesheet">
</head>
<body>
<header>
<a href="index.html">
<img class="logo" src="images/logo.png" alt="logo for oslo museum">
</a>
<nav class="nav">
<ul>
<li><a href="visit.html" class="button-visit">VISIT US</a></li>
<li><a href="exhibition.html" class="button-top-exhibitions">EXHIBITIONS</a></li>
</ul>
</nav>
</header>
<main>
<div class="explore">
<p>PRIVACY & POLICY</p>
</div>
<div class="privacy-policy">
<div class="text-container">
<p>Last Updated: [01.05.2024]</p>
</div>
<div class="text-container">
<h1>Introduction</h1>
<p>Welcome to Oslo Museum, a community science museum located in Oslo, Norway. Our website is dedicated
to providing information about our museum, including exhibits, events, and educational resources.
This privacy policy outlines how we handle information collected through our website.</p>
</div>
<div class="text-container">
<h1>SCOPE</h1>
<p>This policy applies to all visitors of our website and covers how we collect, use, and safeguard any
information obtained.</p>
</div>
<div class="text-container">
<h1>Information We Do Not Collect</h1>
<p>• Cookies: Our website does not use cookies or similar tracking technologies. <br><br>
• Personal Data: We do not require users to create an account or log in to access our website.
Therefore, we do not collect personal data like names, addresses, email addresses, or phone numbers.
<br><br>
• User Activity Tracking: We do not track or analyse user behaviour on our website
</p>
</div>
<div class="text-container">
<h1>Information We Collect</h1>
<p>• Voluntary Information: Visitors may choose to contact us via email or phone for inquiries. In such
cases, we only use the information provided to address the inquiry. <br>
• Aggregate Data: We may collect anonymous, aggregate data such as the number of visitors to our
site for internal use. This data does not identify individual users.</p>
</div>
<div class="text-container">
<h1>Use of Information</h1>
<p>The limited information we collect is used solely for the following purposes: <br><br>
• Responding to inquiries. <br>
• Improving our website and services. Ensuring the security of our website.</p>
</div>
<div class="text-container">
<h1>Data Security</h1>
<p>We are committed to ensuring the security of our website and protect against unauthorized access,
alteration, disclosure, or destruction of information.</p>
</div>
<div class="text-container">
<h1>Third-Party Links</h1>
<p>Our website may contain links to third-party sites. We are not responsible for the privacy practices
of these external sites.</p>
</div>
<div class="text-container">
<h1>Children's Privacy</h1>
<p>Our website is designed for a general audience and does not knowingly collect information from
children under the age of 16.</p>
</div>
<div class="text-container">
<h1>Changes to Our Privacy Policy</h1>
<p>We may update this policy periodically. Any changes will be posted on this page with an updated
revision date.</p>
</div>
<div class="text-container">
<h1>Contact Us</h1>
<p>For any questions or concerns about our privacy policy, please contact us at oslomuseum@gmail.com
Governing Law
This privacy policy is governed by Norwegian law.</p>
</div>
</div>
</main>
<footer>
<div class="footer-content">
<img class="footer-picture" src="images/bottom.jpg" alt="#">
<div class="footer-buttons">
<div class="button-left">
<a href="visit.html" class="button-contact">CONTACT US</a>
<a href="contribute.html" class="button-contribute">CONTRIBUTE</a>
<a href="exhibition.html" class="button-exhibitions">EXHIBITIONS</a>
</div>
<div class="button-right">
<a href="terms.html" class="button-terms">TERMS & CONDITIONS</a>
<a href="privacy.html" class="button-privacy">PRIVACY POLICY</a>
</div>
</div>
</div>
</footer>
</body>
</html>