-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.34 KB
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 1.34 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>devjuun</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: #F8F9FA; color: #191F28; min-height: 100vh; display: flex; align-items: center; justify-content: center; }
.card { background: #fff; border-radius: 16px; padding: 40px; max-width: 400px; width: 90%; text-align: center; box-shadow: 0 2px 12px rgba(0,0,0,0.06); }
.logo { font-size: 32px; font-weight: 700; color: #5271FF; margin-bottom: 8px; }
.subtitle { font-size: 14px; color: #8B95A1; margin-bottom: 24px; }
.desc { font-size: 15px; line-height: 1.6; color: #4E5968; margin-bottom: 24px; }
.contact { font-size: 13px; color: #8B95A1; }
.contact a { color: #5271FF; text-decoration: none; }
</style>
</head>
<body>
<div class="card">
<div class="logo">devjuun</div>
<div class="subtitle">App Developer</div>
<div class="desc">
<strong>몰트맵</strong> - 내 주변 위스키 최저가 찾기<br>
전국 위스키 가격 비교 및 매장 탐색 앱
</div>
<div class="contact">
문의: <a href="mailto:devjuun@gmail.com">devjuun@gmail.com</a>
</div>
</div>
</body>
</html>