-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.html
More file actions
131 lines (122 loc) · 3.01 KB
/
Contact.html
File metadata and controls
131 lines (122 loc) · 3.01 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>연락처 - Contact</title>
<link rel="canonical" href="https://soosooland.com/Contact.html">
<link rel="stylesheet" href="https://soosooland.com/css/protection.css">
<script src="https://soosooland.com/js/protection.js"></script>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
line-height: 1.6;
max-width: 700px;
margin: 0 auto;
padding: 20px;
color: #333;
}
.container {
background-color: white;
padding: 2rem;
border-radius: 8px;
}
h1 {
color: #2c3e50;
border-bottom: 3px solid #3498db;
padding-bottom: 10px;
}
h2 {
color: #34495e;
margin-top: 2rem;
}
.email-box {
background: #f0f7ff;
border: 2px solid #3498db;
border-radius: 8px;
padding: 1.5rem;
text-align: center;
margin: 2rem 0;
}
.email {
font-size: 1.2rem;
font-weight: bold;
color: #2c3e50;
word-break: break-all;
}
.copy-btn {
margin-top: 10px;
padding: 8px 20px;
background: #3498db;
color: white;
border: none;
border-radius: 4px;
cursor: pointer;
font-size: 0.9rem;
}
.copy-btn:hover {
background: #2980b9;
}
ul {
padding-left: 1.5rem;
}
li {
margin-bottom: 0.5rem;
}
hr {
border: none;
height: 2px;
background: linear-gradient(to right, #3498db, #e74c3c);
margin: 3rem 0;
}
.section {
margin-bottom: 3rem;
}
</style>
</head>
<body>
<div class="container">
<!-- 한국어 -->
<div class="section" lang="ko">
<h1>연락처</h1>
<div class="email-box">
<p>문의사항이 있으시면 이메일 주세요</p>
<div class="email" id="email">soosooland2025@gmail.com</div>
<button class="copy-btn" onclick="copyEmail()">이메일 복사</button>
</div>
<h2>문의 가능 내용</h2>
<ul>
<li>게임 버그 신고</li>
<li>제안 및 피드백</li>
<li>일반 문의</li>
</ul>
<p><strong>응답 시간:</strong> 보통 1-2일 내 답변드립니다.</p>
</div>
<hr>
<!-- English -->
<div class="section" lang="en">
<h1>Contact</h1>
<div class="email-box">
<p>Please email us if you have any questions</p>
<div class="email">soosooland2025@gmail.com</div>
<button class="copy-btn" onclick="copyEmail()">Copy Email</button>
</div>
<h2>What to Contact About</h2>
<ul>
<li>Bug reports</li>
<li>Suggestions and feedback</li>
<li>General inquiries</li>
</ul>
<p><strong>Response Time:</strong> Usually reply within 1-2 days.</p>
</div>
</div>
<script>
function copyEmail() {
const email = "soosooland2025@gmail.com";
navigator.clipboard.writeText(email).then(() => {
alert("이메일이 복사되었습니다!\nEmail copied!\n\n" + email);
});
}
</script>
</body>
</html>