Skip to content

Commit 093c700

Browse files
authored
Update privacy.html
1 parent a4d2dd2 commit 093c700

1 file changed

Lines changed: 53 additions & 7 deletions

File tree

privacy.html

Lines changed: 53 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,60 @@
11
<!DOCTYPE html>
22
<html lang="ko">
33
<head>
4-
<meta charset="UTF-8" />
5-
<title>개인정보처리방침</title>
4+
<meta charset="UTF-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
6+
<title>개인정보처리방침 / Privacy Policy</title>
7+
<style>
8+
body {
9+
font-family: Arial, sans-serif;
10+
max-width: 800px;
11+
margin: 2em auto;
12+
padding: 1em;
13+
line-height: 1.6;
14+
}
15+
h1 {
16+
font-size: 1.8em;
17+
border-bottom: 1px solid #ccc;
18+
padding-bottom: 0.3em;
19+
}
20+
.lang-toggle {
21+
text-align: right;
22+
margin-bottom: 1em;
23+
}
24+
.lang-toggle button {
25+
margin-left: 0.5em;
26+
padding: 0.3em 0.8em;
27+
}
28+
.lang-section { display: none; }
29+
.lang-ko { display: block; }
30+
</style>
31+
<script>
32+
function switchLang(lang) {
33+
document.querySelectorAll('.lang-section').forEach(el => el.style.display = 'none');
34+
document.querySelectorAll('.lang-' + lang).forEach(el => el.style.display = 'block');
35+
}
36+
</script>
637
</head>
738
<body>
8-
<h1>개인정보처리방침</h1>
9-
<p>J4DocSearch는 사용자의 개인정보를 수집하거나 외부로 전송하지 않습니다.</p>
10-
<p>본 프로그램은 모든 데이터를 로컬에서 처리하며, 광고 및 통계용 추적을 포함하지 않습니다.</p>
11-
<p>단, 향후 버전에서 광고가 포함될 경우 Google AdSense 정책에 따라 개인정보처리방침이 업데이트될 수 있습니다.</p>
12-
<p>문의: j4docsearch@gmail.com</p>
39+
<div class="lang-toggle">
40+
<button onclick="switchLang('ko')">한국어</button>
41+
<button onclick="switchLang('en')">English</button>
42+
</div>
43+
44+
<div class="lang-section lang-ko">
45+
<h1>개인정보처리방침</h1>
46+
<p>J4DocSearch는 사용자의 개인정보를 수집하거나 외부로 전송하지 않습니다.</p>
47+
<p>이 프로그램은 모든 데이터를 로컬에서 처리하며, 광고 및 통계용 추적 기능을 포함하지 않습니다.</p>
48+
<p>단, 향후 버전에서 광고가 포함될 경우 Google AdSense 정책에 따라 본 방침은 변경될 수 있습니다.</p>
49+
<p>문의: j4docsearch@gmail.com</p>
50+
</div>
51+
52+
<div class="lang-section lang-en">
53+
<h1>Privacy Policy</h1>
54+
<p>J4DocSearch does not collect or transmit any personal information.</p>
55+
<p>This program processes all data locally and does not include any tracking or analytics functionality.</p>
56+
<p>Note that future versions may include advertisements, in which case this policy may be updated in accordance with Google AdSense requirements.</p>
57+
<p>Contact: j4docsearch@gmail.com</p>
58+
</div>
1359
</body>
1460
</html>

0 commit comments

Comments
 (0)