forked from nicolas-van/easy-markdown-to-github-pages
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (108 loc) · 3.48 KB
/
index.html
File metadata and controls
112 lines (108 loc) · 3.48 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>다시 스탠드 - 문서 센터</title>
<style>
body {
font-family: 'Malgun Gothic', '맑은 고딕', sans-serif;
line-height: 1.6;
color: #333;
max-width: 800px;
margin: 0 auto;
padding: 20px;
background-color: #f8f9fa;
}
.container {
background-color: white;
padding: 40px;
border-radius: 10px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #2c3e50;
text-align: center;
border-bottom: 3px solid #3498db;
padding-bottom: 15px;
margin-bottom: 30px;
}
.document-links {
display: flex;
flex-direction: column;
gap: 20px;
margin-top: 30px;
}
.document-card {
background-color: #f8f9fa;
padding: 20px;
border-radius: 8px;
border-left: 4px solid #3498db;
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.document-card:hover {
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.document-card h2 {
color: #2c3e50;
margin-top: 0;
margin-bottom: 10px;
}
.document-card p {
color: #7f8c8d;
margin-bottom: 15px;
}
.document-card a {
display: inline-block;
background-color: #3498db;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.2s ease;
}
.document-card a:hover {
background-color: #2980b9;
}
.footer {
margin-top: 40px;
padding-top: 20px;
border-top: 1px solid #ddd;
text-align: center;
color: #7f8c8d;
}
@media (max-width: 600px) {
body {
padding: 10px;
}
.container {
padding: 20px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>다시 스탠드 문서 센터</h1>
<p>다시 스탠드 서비스와 관련된 법적 문서들을 확인하실 수 있습니다.</p>
<div class="document-links">
<div class="document-card">
<h2>개인정보처리방침</h2>
<p>다시 스탠드 서비스의 개인정보 수집, 이용, 보관 및 파기에 관한 정책을 확인하실 수 있습니다.</p>
<a href="privacy-policy-dasi-stand.html">개인정보처리방침 보기</a>
</div>
<div class="document-card">
<h2>서비스 이용약관</h2>
<p>다시 스탠드 서비스 이용에 관한 약관과 규정을 확인하실 수 있습니다.</p>
<a href="약관.html">이용약관 보기</a>
</div>
</div>
<div class="footer">
<p><strong>패션 개발자들</strong></p>
<p>서울특별시 마포구 마포대로 89 포스트타워 7층, 12층</p>
<p>최종 업데이트: 2025년 7월 7일</p>
</div>
</div>
</body>
</html>