-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
87 lines (83 loc) · 2.92 KB
/
contact.html
File metadata and controls
87 lines (83 loc) · 2.92 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Contact - KitePad</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Exo+2:ital,wght@0,100..900;1,100..900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/style.css">
<style>
.contact-container {
max-width: 800px;
margin: 0 auto;
padding: 40px 20px;
color: #e0e0e0;
line-height: 1.8;
text-align: center;
}
.contact-header {
border-bottom: 2px solid var(--accent-color);
padding-bottom: 20px;
margin-bottom: 30px;
}
.contact-info {
background: #1e1e1e;
padding: 40px;
border-radius: 12px;
margin-bottom: 40px;
border: 1px solid #333;
display: inline-block;
min-width: 300px;
}
.email-link {
font-size: 24px;
color: var(--accent-color);
text-decoration: none;
font-weight: bold;
display: block;
margin-top: 10px;
}
.email-link:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<div class="contact-container">
<div class="nav-links">
<a href="/" class="nav-link">← Back</a>
</div>
<div class="contact-header">
<h1>Contact</h1>
<p>If you have any questions, please contact us at the email address below.</p>
</div>
<div class="contact-info">
<div style="font-size: 14px; color: #888; margin-bottom: 10px;">Email Support</div>
<div id="email-placeholder"></div>
</div>
<script>
(function() {
const user = "hanjinkim";
const domain = "protonmail.com";
const placeholder = document.getElementById('email-placeholder');
const link = document.createElement('a');
link.href = 'mailto:' + user + '@' + domain;
link.className = 'email-link';
link.textContent = user + '@' + domain;
placeholder.appendChild(link);
})();
</script>
<div class="policy-section" style="text-align: left; margin-top: 40px;">
<p>We typically try to respond within 24 hours. We welcome any feedback, including service suggestions or bug reports.</p>
</div>
</div>
<footer class="site-footer">
<div class="container">
<hr>
<p>© 2026 KitePad. All rights reserved. <a href="/privacy.html" class="nav-link">Privacy Policy</a></p>
</div>
</footer>
</body>
</html>