-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
44 lines (39 loc) · 2.7 KB
/
Copy pathprivacy.html
File metadata and controls
44 lines (39 loc) · 2.7 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy | ONLYK</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;700;900&display=swap" rel="stylesheet">
<style>
:root { --do-blue: #0069ff; --dark-navy: #001e44; --text-main: #4b5563; }
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Inter', sans-serif; }
body { background-color: #ffffff; color: var(--text-main); line-height: 1.8; }
.top-nav { padding: 20px 5%; border-bottom: 1px solid #edf2f7; }
.back-btn { text-decoration: none; color: var(--do-blue); font-weight: 700; }
.content-container { max-width: 800px; margin: 0 auto; padding: 60px 5%; }
h1 { font-size: 42px; color: var(--dark-navy); margin-bottom: 20px; font-weight: 900; }
h2 { font-size: 24px; color: var(--dark-navy); margin: 30px 0 15px; font-weight: 700; }
p { font-size: 18px; margin-bottom: 20px; }
.policy-box { background: #f8fafc; padding: 30px; border-radius: 12px; border: 1px solid #e2e8f0; }
</style>
</head>
<body>
<nav class="top-nav"><a href="index.html" class="back-btn">← Back to Home</a></nav>
<div class="content-container">
<h1>Privacy Policy</h1>
<p>Last Updated: January 29, 2026</p>
<div class="policy-box">
<p>At <strong>ONLYK</strong>, accessible from our website, one of our main priorities is the privacy of our visitors. This Privacy Policy document contains types of information that is collected and recorded by ONLYK and how we use it.</p>
<h2>1. Log Files</h2>
<p>ONLYK follows a standard procedure of using log files. These files log visitors when they visit websites. The information collected includes internet protocol (IP) addresses, browser type, Internet Service Provider (ISP), date and time stamp, and referring/exit pages.</p>
<h2>2. Google DoubleClick DART Cookie</h2>
<p>Google is one of the third-party vendors on our site. It also uses cookies, known as DART cookies, to serve ads to our site visitors based upon their visit to our site and other sites on the internet.</p>
<h2>3. Privacy Policies</h2>
<p>Third-party ad servers or ad networks use technologies like cookies, JavaScript, or Web Beacons that are used in their respective advertisements and links that appear on ONLYK, which are sent directly to users' browser.</p>
<h2>4. Consent</h2>
<p>By using our website, you hereby consent to our Privacy Policy and agree to its Terms and Conditions.</p>
</div>
</div>
</body>
</html>