-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprivacy.html
More file actions
60 lines (58 loc) · 2.05 KB
/
privacy.html
File metadata and controls
60 lines (58 loc) · 2.05 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>개인정보처리방침 / Privacy Policy</title>
<style>
body {
font-family: Arial, sans-serif;
max-width: 800px;
margin: 2em auto;
padding: 1em;
line-height: 1.6;
}
h1 {
font-size: 1.8em;
border-bottom: 1px solid #ccc;
padding-bottom: 0.3em;
}
.lang-toggle {
text-align: right;
margin-bottom: 1em;
}
.lang-toggle button {
margin-left: 0.5em;
padding: 0.3em 0.8em;
}
.lang-section { display: none; }
.lang-ko { display: block; }
</style>
<script>
function switchLang(lang) {
document.querySelectorAll('.lang-section').forEach(el => el.style.display = 'none');
document.querySelectorAll('.lang-' + lang).forEach(el => el.style.display = 'block');
}
</script>
</head>
<body>
<div class="lang-toggle">
<button onclick="switchLang('ko')">한국어</button>
<button onclick="switchLang('en')">English</button>
</div>
<div class="lang-section lang-ko">
<h1>개인정보처리방침</h1>
<p>J4DocSearch는 사용자의 개인정보를 수집하거나 외부로 전송하지 않습니다.</p>
<p>이 프로그램은 모든 데이터를 로컬에서 처리하며, 광고 및 통계용 추적 기능을 포함하지 않습니다.</p>
<p>단, 향후 버전에서 광고가 포함될 경우 Google AdSense 정책에 따라 본 방침은 변경될 수 있습니다.</p>
<p>문의: j4docsearch@gmail.com</p>
</div>
<div class="lang-section lang-en">
<h1>Privacy Policy</h1>
<p>J4DocSearch does not collect or transmit any personal information.</p>
<p>This program processes all data locally and does not include any tracking or analytics functionality.</p>
<p>Note that future versions may include advertisements, in which case this policy may be updated in accordance with Google AdSense requirements.</p>
<p>Contact: j4docsearch@gmail.com</p>
</div>
</body>
</html>