-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
90 lines (79 loc) · 3.75 KB
/
privacy.html
File metadata and controls
90 lines (79 loc) · 3.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Notice</title>
<link rel="icon" type="image/png" sizes="32x32" href="/assets/img/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/img/favicon-16x16.png">
<link rel="apple-touch-icon" sizes="180x180" href="/assets/img/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="192x192" href="/assets/img/android-chrome-192x192.png">
<link rel="icon" type="image/png" sizes="512x512" href="/assets/img/android-chrome-512x512.png">
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
line-height: 1.6;
color: #333;
max-width: 720px;
margin: 40px auto;
padding: 0 20px;
}
h1 { font-size: 2rem; margin-bottom: 0.5rem; }
h2 { margin-top: 1.6rem; }
p { margin-bottom: 1rem; }
a { color: #007aff; }
code { background: #f3f3f5; padding: 2px 6px; border-radius: 6px; }
</style>
</head>
<body>
<h1>Privacy Notice</h1>
<p>This page explains what data is processed when you use this website.</p>
<h2>Who I Am</h2>
<p>My name is Evgeniy Gordienko. This is my personal portfolio website.</p>
<h2>Cookies</h2>
<p>
This website does <strong>not</strong> set advertising cookies and does <strong>not</strong> use cookie-based trackers.
</p>
<h2>Analytics (GoatCounter)</h2>
<p>
This website uses <strong>GoatCounter</strong> for basic, privacy-friendly traffic statistics. It is included as a simple script tag on the page.
</p>
<p>
<strong>No cookies are used for analytics.</strong> GoatCounter counts visits by receiving a pageview request when a page loads.
The analytics are used to see overall usage (for example: total pageviews and which pages are viewed most).
</p>
<p>
Like most web analytics, the request to GoatCounter may include technical information such as the page URL, referrer (if any),
and standard request metadata (e.g., IP address and user agent). This is used to produce aggregated statistics and detect obvious abuse.
</p>
<p>
You can read GoatCounter’s documentation and policies here:
<a href="https://www.goatcounter.com/help" target="_blank" rel="noopener noreferrer">Help/Documentation</a>,
<a href="https://www.goatcounter.com/privacy" target="_blank" rel="noopener noreferrer">Privacy</a>,
<a href="https://www.goatcounter.com/terms" target="_blank" rel="noopener noreferrer">Terms</a>.
</p>
<h2>Language Preference</h2>
<p>
If you switch between Danish and English, the site may store your choice in your browser using <code>localStorage</code>
(key: <code>siteLang</code>) so you don’t have to toggle it again next time. This is not a cookie and is only used for this function.
</p>
<h2>Contact Form Data</h2>
<p>
When you use the contact form on this site, you provide your email address and your message.
This information is used solely for responding to your inquiry.
</p>
<h2>Data Processing (Formspree)</h2>
<p>
This website uses Formspree to process contact form submissions. When you submit the form, your data is sent to Formspree’s servers,
which then forward it to my email address. Formspree is a third-party service and has its own privacy policy:
<a href="https://formspree.io/legal/privacy-policy/" target="_blank" rel="noopener noreferrer">Formspree Privacy Policy</a>.
</p>
<h2>Your Rights</h2>
<p>
I do not use your personal data for marketing and I do not sell it to third parties.
You can request deletion of your contact form message by contacting me.
</p>
<br>
<a href="index.html">← Back to main site</a>
</body>
</html>