openfree commited on
Commit
53bd894
·
verified ·
1 Parent(s): e1bade7

Update index.html

Browse files
Files changed (1) hide show
  1. index.html +52 -0
index.html CHANGED
@@ -1,2 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
 
2
 
 
1
+ <!DOCTYPE html>
2
+ <html lang="ko">
3
+ <head>
4
+ <meta charset="UTF-8">
5
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+ <title>K-AI 커뮤니티 서밋 2025</title>
7
+ <style>
8
+ body {
9
+ margin: 0;
10
+ padding: 0;
11
+ font-family: 'Pretendard', sans-serif;
12
+ background-color: #f8f9fc;
13
+ display: flex;
14
+ justify-content: center;
15
+ align-items: center;
16
+ min-height: 100vh;
17
+ flex-direction: column;
18
+ }
19
+ .poster {
20
+ max-width: 100%;
21
+ height: auto;
22
+ border-radius: 12px;
23
+ box-shadow: 0 4px 20px rgba(0,0,0,0.1);
24
+ }
25
+ .link-container {
26
+ margin-top: 30px;
27
+ text-align: center;
28
+ }
29
+ .apply-btn {
30
+ text-decoration: none;
31
+ color: #ffffff;
32
+ background-color: #1976D2;
33
+ padding: 14px 24px;
34
+ border-radius: 8px;
35
+ font-size: 18px;
36
+ transition: background-color 0.3s;
37
+ }
38
+ .apply-btn:hover {
39
+ background-color: #135ba1;
40
+ }
41
+ </style>
42
+ </head>
43
+ <body>
44
+ <img src="image.png" alt="K-AI 커뮤니티 서밋 2025 포스터" class="poster">
45
+
46
+ <div class="link-container">
47
+ <a href="https://onoffmix.com/event/325919" target="_blank" class="apply-btn">
48
+ 📌 행사 참가 신청하기
49
+ </a>
50
+ </div>
51
+ </body>
52
+ </html>
53
 
54