File size: 1,466 Bytes
53bd894
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
11a80c6
a58e671
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
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>K-AI 커뮤니티 서밋 2025</title>
    <style>
        body {
            margin: 0;
            padding: 0;
            font-family: 'Pretendard', sans-serif;
            background-color: #f8f9fc;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            flex-direction: column;
        }
        .poster {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        }
        .link-container {
            margin-top: 30px;
            text-align: center;
        }
        .apply-btn {
            text-decoration: none;
            color: #ffffff;
            background-color: #1976D2;
            padding: 14px 24px;
            border-radius: 8px;
            font-size: 18px;
            transition: background-color 0.3s;
        }
        .apply-btn:hover {
            background-color: #135ba1;
        }
    </style>
</head>
<body>
    <img src="image.png" alt="K-AI 커뮤니티 서밋 2025 포스터" class="poster">

    <div class="link-container">
        <a href="https://onoffmix.com/event/325919" target="_blank" class="apply-btn">
            📌 행사 참가 신청하기
        </a>
    </div>
</body>
</html>