-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
64 lines (64 loc) · 1.88 KB
/
Copy pathindex.html
File metadata and controls
64 lines (64 loc) · 1.88 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>뉴스브릿지 법적 고지</title>
<style>
body {
margin: 0;
min-height: 100vh;
background: #fafaf7;
color: #1a1a1f;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple SD Gothic Neo",
"Malgun Gothic", Pretendard, Roboto, sans-serif;
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
}
.card {
max-width: 480px;
width: 100%;
background: #ffffff;
border: 1px solid #e5e3dc;
border-radius: 16px;
padding: 40px 32px;
text-align: center;
}
h1 { font-size: 26px; margin: 0 0 8px; letter-spacing: -0.5px; }
p { color: #5a5a65; font-size: 14px; margin: 0 0 32px; }
a.btn {
display: block;
padding: 14px 16px;
margin-top: 12px;
background: #f5f3ed;
color: #1a1a1f;
text-decoration: none;
border-radius: 10px;
border: 1px solid #e5e3dc;
font-weight: 600;
}
a.btn:hover { background: #ede9dc; }
footer { margin-top: 32px; font-size: 12px; color: #9a9aa5; }
@media (prefers-color-scheme: dark) {
body { background: #0a0a0f; color: #e8e6e0; }
.card { background: #15151f; border-color: #1e1e2e; }
a.btn { background: #1e1e2e; color: #e8e6e0; border-color: #2a2a3a; }
a.btn:hover { background: #25253a; }
p { color: #a09e9a; }
footer { color: #6a6878; }
}
</style>
</head>
<body>
<div class="card">
<h1>뉴스브릿지</h1>
<p>법적 고지 — 주식회사 웨일즈컴퍼니</p>
<a class="btn" href="./terms.html">이용약관</a>
<a class="btn" href="./privacy.html">개인정보처리방침</a>
<a class="btn" href="./delete.html">데이터 삭제 요청</a>
<footer>© 2026 주식회사 웨일즈컴퍼니<br />whales0913@gmail.com</footer>
</div>
</body>
</html>