-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
52 lines (45 loc) · 857 Bytes
/
Copy pathprivacy.html
File metadata and controls
52 lines (45 loc) · 857 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Privacy Policy</title>
<style>
* {
margin: 0;
box-sizing: border-box;
}
div,
h2,
input,
button,
footer {
font-family: system-ui;
}
body {
background-color: #f5f5f5;
height: 100dvh;
}
.container {
max-width: 400px;
margin: 0 auto;
background-color: #fff;
padding: 18px;
position: relative;
top: 50%;
transform: translateY(-50%);
}
h1 {
margin-bottom: 10px;
}
</style>
</head>
<body>
<div class="container">
<h1>Privacy Policy</h1>
<p>This site uses cookies and third-party services like Google AdSense to show ads. Data like your IP and
browser
may be collected for analytics and ad personalization.</p>
</div>
</body>
</html>