K-AI / index.html
openfree's picture
Update index.html
53bd894 verified
<!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>