-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprivacy-policy.html
149 lines (143 loc) · 5.62 KB
/
privacy-policy.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
<!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>colorala - Privacy Policy</title>
<link rel="icon" type="image/x-icon" href="/src/img/Colorala avatar.png" />
<meta
name="description"
content="The application under the URL (colorala.com) is a free Color Palette Generator and is available to all users. The app does not contain a registration/login option."
/>
<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=Poppins:wght@300;400;500;600&display=swap"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/[email protected]/fonts/remixicon.css"
rel="stylesheet"
/>
<!-- --------- GOOGLE ANALYTICS ---------- -->
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-X147WWY90R"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag('js', new Date());
gtag('config', 'G-X147WWY90R');
</script>
<!-- ////////////////////// -->
<script
defer
src="https://unpkg.com/@lottiefiles/lottie-player@latest/dist/lottie-player.js"
></script>
<script
defer
src="https://cdnjs.cloudflare.com/ajax/libs/html2canvas/1.4.1/html2canvas.min.js"
integrity="sha512-BNaRQnYJYiPSqHHDb58B0yaPfCu+Wgds8Gp/gU33kqBtgNS4tSPHuGibyoeqMV/TJlSKda6FXzoEyYGjTe+vXA=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script
defer
src="https://unpkg.com/jspdf@latest/dist/jspdf.umd.min.js"
></script>
<script
defer
src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/js/all.min.js"
integrity="sha512-6PM0qYu5KExuNcKt5bURAoT6KCThUmHRewN3zUFNaoI6Di7XJPTMoT6K0nsagZKk2OB4L7E3q1uQKHNHd4stIQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
<script defer type="module" src="/src/js/controller.js"></script>
<!--/////////////////// -->
<link rel="stylesheet" href="/src/scss/main.scss" />
</head>
<body>
<app-nav></app-nav>
<main class="content-container">
<header>
<h1>Privacy Policy 👁🗨</h1>
<p>
The administrator of the colorala web application is
<span class="highlight"> Maciej Kuran-Janowski </span>. Please address
correspondence regarding the privacy policy to
<a href="mailto:[email protected]">[email protected]</a>.
</p>
</header>
<section class="content-section-divider">
<h2>General information</h2>
<p>
The website is secured in the transmission layer (SSL certificate).
</p>
<p>
The website is hosted (technically maintained) on the operator's
server: webd.pl.
</p>
</section>
<section class="content-section-divider">
<h3>Privacy 🔒</h3>
<p>
The website at the URL (colorala.com) does not contain a
registration/logging option.
</p>
<p>Areas where various forms of data can be processed are:</p>
<ul>
<li><i class="ri-arrow-right-s-fill"></i>Local browser storage</li>
<li>
<i class="ri-arrow-right-s-fill"></i>Google Analytics & Cookies (the
administrator can check the traffic on the website through the
Google Analytics tool)
</li>
</ul>
</section>
<section class="content-section-divider">
<h3>Local storage 💾</h3>
<p>
The website uses a form of data storage in the local storage of the
browser. The data that are saved in local storage are the palette of
selected colors, information about accepting the privacy policy,
information about accepting a welcome message with a short instruction
manual. The data in local storage for a particular browser remains
permanently saved until the user manually empties the browser's local
storage.
</p>
</section>
<section class="content-section-divider">
<h3>Google Analytics & Cookies 🍪</h3>
<p>
The administrator uses statistical analysis of website traffic via
Google Analytics (Google Inc., based in the USA). The operator
(webd.pl) does not provide personal data to Google Analytics, only
anonymized information. The service is based on the use of cookies on
the user's terminal device. Cookies are IT data, in particular text
files, which are stored on the final device of the Service Recipient.
With regard to the information on user preferences collected by the
Google advertising network, the user can view and edit the information
resulting from cookies using the
<a
target="_blank"
href="https://adssettings.google.com/authenticated?hl=pl"
>Google tool</a
>.
</p>
</section>
</main>
<p class="added-to-palette-confirmation-label">Added ❤</p>
<p class="added-to-palette-error-label">❌ Already Added</p>
<p class="copied-to-clipboard-label">🟢 Copied</p>
<div class="overlay-modal hide"></div>
</body>
</html>