Created
June 25, 2025 05:02
-
-
Save Dahye-Dyan/87d9d250e21e617718003b21b1b0ddc2 to your computer and use it in GitHub Desktop.
My HTML Gist
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="ko"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<title>์ก๋คํ ๋ฉค๋ฒ ๋๊ฐ</title> | |
<style> | |
* { | |
margin: 0; | |
padding: 0; | |
box-sizing: border-box; | |
} | |
body { | |
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Malgun Gothic', sans-serif; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 60%, #f093fb 100%); | |
min-height: 100vh; | |
padding: 25px; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
.container { | |
max-width: 1200px; | |
margin: 0 auto; | |
} | |
.hero-section { | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 32px; | |
padding: 45px 35px; | |
margin-bottom: 25px; | |
text-align: center; | |
box-shadow: 0 25px 80px rgba(0,0,0,0.3); | |
border: 3px solid rgba(255,255,255,0.2); | |
position: relative; | |
overflow: hidden; | |
} | |
.hero-section::before { | |
content: ''; | |
position: absolute; | |
top: -50%; | |
left: -50%; | |
width: 200%; | |
height: 200%; | |
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%); | |
animation: float 6s ease-in-out infinite; | |
} | |
@keyframes float { | |
0%, 100% { transform: translate(-50%, -50%) rotate(0deg); } | |
50% { transform: translate(-45%, -45%) rotate(180deg); } | |
} | |
.hero-content { | |
position: relative; | |
z-index: 2; | |
} | |
.hero-avatar { | |
width: 110px; | |
height: 110px; | |
background: rgba(255, 255, 255, 0.95); | |
border-radius: 50%; | |
margin: 0 auto 25px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-size: 3rem; | |
box-shadow: 0 15px 40px rgba(0,0,0,0.2), inset 0 0 0 3px rgba(255,255,255,0.3); | |
backdrop-filter: blur(10px); | |
} | |
.hero-name { | |
font-size: 2.8rem; | |
font-weight: 900; | |
color: white; | |
margin-bottom: 15px; | |
text-shadow: 0 4px 20px rgba(0,0,0,0.3); | |
letter-spacing: -1px; | |
} | |
.hero-tagline { | |
font-size: 1.4rem; | |
color: rgba(255,255,255,0.95); | |
margin-bottom: 30px; | |
font-weight: 500; | |
line-height: 1.4; | |
text-shadow: 0 2px 10px rgba(0,0,0,0.2); | |
} | |
.hero-tags { | |
display: flex; | |
justify-content: center; | |
gap: 12px; | |
flex-wrap: wrap; | |
} | |
.hero-tag { | |
background: rgba(255, 255, 255, 0.2); | |
backdrop-filter: blur(10px); | |
color: white; | |
padding: 12px 24px; | |
border-radius: 30px; | |
font-size: 1rem; | |
font-weight: 600; | |
box-shadow: 0 8px 25px rgba(0,0,0,0.2); | |
border: 2px solid rgba(255,255,255,0.3); | |
transition: all 0.3s ease; | |
} | |
.hero-tag:hover { | |
background: rgba(255, 255, 255, 0.3); | |
transform: translateY(-2px); | |
box-shadow: 0 12px 35px rgba(0,0,0,0.3); | |
} | |
.main-grid { | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
gap: 25px; | |
} | |
.section-group { | |
background: rgba(255, 255, 255, 0.98); | |
backdrop-filter: blur(25px); | |
border-radius: 24px; | |
padding: 30px; | |
box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 0 0 1px rgba(255,255,255,0.3); | |
border: 2px solid rgba(255,255,255,0.4); | |
} | |
.group-title { | |
font-size: 1.5rem; | |
font-weight: 800; | |
color: #1a202c; | |
margin-bottom: 25px; | |
text-align: center; | |
position: relative; | |
text-shadow: 0 1px 2px rgba(0,0,0,0.1); | |
} | |
.group-title::after { | |
content: ''; | |
position: absolute; | |
bottom: -10px; | |
left: 50%; | |
transform: translateX(-50%); | |
width: 60px; | |
height: 3px; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 2px; | |
} | |
.info-card { | |
background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%); | |
border-radius: 16px; | |
padding: 22px; | |
margin-bottom: 18px; | |
border: 2px solid #e2e8f0; | |
box-shadow: 0 6px 25px rgba(0,0,0,0.08); | |
} | |
.info-card:last-child { | |
margin-bottom: 0; | |
} | |
.card-header { | |
display: flex; | |
align-items: center; | |
gap: 12px; | |
margin-bottom: 15px; | |
} | |
.card-icon { | |
width: 40px; | |
height: 40px; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 12px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-size: 1.2rem; | |
color: white; | |
box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); | |
} | |
.card-title { | |
font-size: 1.15rem; | |
font-weight: 800; | |
color: #1a202c; | |
} | |
.card-content { | |
color: #2d3748; | |
line-height: 1.7; | |
font-size: 0.95rem; | |
font-weight: 500; | |
} | |
.highlight { | |
background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%); | |
color: #004d40; | |
padding: 3px 8px; | |
border-radius: 6px; | |
font-weight: 700; | |
border: 1px solid #4fd1c7; | |
} | |
.journey-timeline { | |
position: relative; | |
padding-left: 35px; | |
} | |
.journey-timeline::before { | |
content: ''; | |
position: absolute; | |
left: 15px; | |
top: 0; | |
bottom: 0; | |
width: 3px; | |
background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 2px; | |
} | |
.timeline-item { | |
position: relative; | |
margin-bottom: 18px; | |
background: white; | |
padding: 15px 20px; | |
border-radius: 12px; | |
box-shadow: 0 4px 20px rgba(0,0,0,0.08); | |
border: 2px solid #f1f5f9; | |
font-weight: 500; | |
color: #2d3748; | |
line-height: 1.5; | |
font-size: 0.9rem; | |
} | |
.timeline-item::before { | |
content: ''; | |
position: absolute; | |
left: -30px; | |
top: 18px; | |
width: 12px; | |
height: 12px; | |
background: linear-gradient(135deg, #667eea 0%, #f093fb 100%); | |
border-radius: 50%; | |
border: 3px solid white; | |
box-shadow: 0 0 0 2px #667eea; | |
} | |
.collab-grid { | |
display: grid; | |
grid-template-columns: 1fr; | |
gap: 18px; | |
} | |
.collab-card { | |
background: white; | |
border-radius: 16px; | |
padding: 22px; | |
border: 2px solid #e2e8f0; | |
box-shadow: 0 6px 25px rgba(0,0,0,0.08); | |
} | |
.collab-header { | |
display: flex; | |
align-items: center; | |
gap: 12px; | |
margin-bottom: 12px; | |
} | |
.collab-icon { | |
font-size: 1.5rem; | |
} | |
.collab-title { | |
font-size: 1.1rem; | |
font-weight: 800; | |
color: #1a202c; | |
} | |
.collab-content { | |
color: #2d3748; | |
line-height: 1.6; | |
font-weight: 500; | |
font-size: 0.95rem; | |
} | |
.philosophy-card { | |
background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%); | |
border: 3px solid #e9d5ff; | |
position: relative; | |
overflow: hidden; | |
border-radius: 16px; | |
padding: 25px; | |
} | |
.philosophy-card::before { | |
content: '"'; | |
position: absolute; | |
top: 10px; | |
right: 20px; | |
font-size: 3.5rem; | |
color: #8b5cf6; | |
opacity: 0.3; | |
font-family: serif; | |
font-weight: bold; | |
} | |
.philosophy-content { | |
font-size: 1rem; | |
font-style: italic; | |
font-weight: 600; | |
color: #2d3748; | |
line-height: 1.6; | |
} | |
@media (max-width: 768px) { | |
.main-grid { | |
grid-template-columns: 1fr; | |
gap: 20px; | |
} | |
.hero-section { | |
padding: 30px 25px; | |
} | |
.section-group { | |
padding: 25px 20px; | |
} | |
.hero-name { | |
font-size: 2rem; | |
} | |
.hero-tagline { | |
font-size: 1.1rem; | |
} | |
body { | |
padding: 15px; | |
} | |
.journey-timeline { | |
padding-left: 30px; | |
} | |
.timeline-item::before { | |
left: -26px; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="hero-section"> | |
<div class="hero-content"> | |
<div class="hero-avatar">๐ฑ</div> | |
<div class="hero-name">์ก๋คํ (๋ฟ)</div> | |
<div class="hero-tagline">์ปค๋ฎค๋ํฐ์ AI๋ฅผ ์๋ ๋์งํธ ๋ฏผ์ฃผํ ์คํ๊ฐ</div> | |
<div class="hero-tags"> | |
<span class="hero-tag">๋์งํธ๋ฏผ์ฃผํ</span><span class="hero-tag">์ปค๋ฎค๋ํฐ ์ด์์๋ํ</span><span class="hero-tag">๋ฐฑํจํน</span> | |
</div> | |
</div> | |
</div> | |
<div class="main-grid"> | |
<div class="section-group"> | |
<div class="group-title">๐ฏ ํต์ฌ ๊ฐ์น</div> | |
<div class="info-card"> | |
<div class="card-header"><div class="card-icon">๐ก</div><div class="card-title">๋ฏธ์ & ๊ฐ์น๊ด</div></div> | |
<div class="card-content"><span class="highlight">๋์งํธ ๋ฏผ์ฃผํ</span>๋ฅผ ํตํด ๋๊ตฌ๋ ์๊ธฐ๊ฐ ํ๊ณ ์ถ์ ์ผ์ ํ๋ ์ธ์์ ๊ฟ๊พธ๋ฉฐ, <span class="highlight">์๋น์ค ์์ฐ์</span>๋ก์ ์ฃผ์ฒด์ ์ธ ์ถ์ ์์ํ ์ ์๋๋ก <span class="highlight">0โ1์ ์ฌ์ </span>์ ๋๋ ํ์ ์ํ๊ณ๋ฅผ ๊ตฌ์ถํฉ๋๋ค.</div> | |
</div> | |
<div class="info-card"> | |
<div class="card-header"><div class="card-icon">โก</div><div class="card-title">ํ์ฌ ์ง์คํ๋ ์ผ</div></div> | |
<div class="card-content">์งํผํฐ์ค์์ AI ํ์ฉ ์ปค๋ฎค๋ํฐ๋ฅผ ๊ธฐํยท์ด์ํ๋ฉฐ, <span class="highlight">GPT ๊ธฐ๋ฐ ์์ด์ ํธ ์ํฌํ๋ก์ฐ</span>๋ก <span class="highlight">์ปค๋ฎค๋ํฐ ์ด์ ์๋ํ</span> ์์คํ ์ ๊ฐ๋ฐํ๊ณ ์์ต๋๋ค.</div> | |
</div> | |
<div class="info-card"> | |
<div class="card-header"><div class="card-icon">๐๏ธ</div><div class="card-title">์๋์ง ์ถฉ์ ๋ฒ</div></div> | |
<div class="card-content">์์ฐ ์์์ ๋ฑ์ฐ, ์บ ํ, ๋ฐฑํจํน์ ํตํด ํ์ด์ค, ํธํก, <span class="highlight">์ฒด์จ ์กฐ์ </span>์ ์ง์คํ๋ฉฐ ๋ชธ๊ณผ ๋ง์์ ์ถฉ์ ํฉ๋๋ค.</div> | |
</div> | |
</div> | |
<div class="section-group"> | |
<div class="group-title">๐ ๋ค์ค๋ฉ ์ฐ๊ฒฐ</div> | |
<div class="info-card"> | |
<div class="card-header"><div class="card-icon">๐ฏ</div><div class="card-title">๋ค์ค๋ฉ์์์ ๊ฟ</div></div> | |
<div class="card-content">๋น์ทํ ๋ฌธ์ ์์์ ๊ฐ์ง ์ฌ๋๋ค๊ณผ <span class="highlight">์ปค๋ฎค๋ํฐ ์คํ</span>์ ํจ๊ปํ๊ณ , ๋ค์ค๋ฉ ๋ด์์ ํด๋ฝ์ ์ด์ด <span class="highlight">AI ์๋ํ</span>์ <span class="highlight">์ด์ ์์คํ </span>์ ํจ๊ป ๊ณ ๋ฏผํ๋ ๊ฒ์ ๋ชฉํ๋ก ํฉ๋๋ค.</div> | |
</div> | |
<div class="collab-grid"> | |
<div class="collab-card"> | |
<div class="collab-header"><span class="collab-icon">๐ก</span><div class="collab-title">๋์ ์ค ์ ์๋ ๊ฒ</div></div> | |
<div class="collab-content"><span class="highlight">์ปค๋ฎค๋ํฐ ์ด์ ์๋ํ</span>์ <span class="highlight">AI ๊ธฐ๋ฐ ํดํท ์ค๊ณ</span> ๋ถ๋ถ์์ ๋์์ ์ ๊ณตํ๋ฉฐ, ํจ๊ป ๋ฐฐ์ฐ๋ฉด์ ์ง์ ์ ์ฉํ๋ ๋ฐฉ์์ ์ ํธํฉ๋๋ค.</div> | |
</div> | |
<div class="collab-card"> | |
<div class="collab-header"><span class="collab-icon">๐</span><div class="collab-title">์ฐพ๊ณ ์๋ ๊ฒ</div></div> | |
<div class="collab-content">AI์ ๊ด์ฌ์ด ๋ง๊ณ <span class="highlight">๋ฏธ๋ ์กฐ์ง</span>๊ณผ <span class="highlight">์ปค๋ฎค๋ํฐ</span>์ ๋ํด ํ๋ฐํ ์ด์ผ๊ธฐ ๋๋ ๋๋ฃ๋ฅผ ์ฐพ๊ณ ์์ผ๋ฉฐ, ํนํ <span class="highlight">AI ์์ด์ ํธ ์ค๊ณ</span>๋ฅผ ํจ๊ปํ ์ฌ๋์ ์ํฉ๋๋ค.</div> | |
</div> | |
</div> | |
</div> | |
<div class="section-group"> | |
<div class="group-title">๐ค๏ธ ๋๋ฅผ ๋ง๋ ์ฌ์ </div> | |
<div class="journey-timeline"> | |
<div class="timeline-item">์ ์๊ณตํ ์ ๊ณต ํ ์ฌํ๋ฌธ์ ํด๊ฒฐ ์ฐฝ์ ํ๋ก๊ทธ๋จ ์ฐธ์ฌ</div><div class="timeline-item">14๋ช ํ์๊ณผ ํ๋์กฐํฉ ์ค๋ฆฝ ๋ฐ ์ฌํ์ ๊ธฐ์ ๊ฐ์ ์ ์์ฌ ๊ณผ์ ์งํ</div><div class="timeline-item">๊ฒฝ๋ถ ์์ฑ ์ฒญ๋ ๋ง์์์ 3๋ ๊ฐ ๋ก์ปฌ ๊ณต๋์ฒด ์กฐ์ฑ</div><div class="timeline-item">๋ ธ์ฝ๋ '๋ฒ๋ธ' ํ์ต์ผ๋ก <span class="highlight">๊ฐ๋ฐ์์ ์ฌ๊ณ ๋ฐฉ์</span> ์ ํ์ ๊ฒฝํ</div><div class="timeline-item">AI ์ฑ ์์ฑ๊ธฐ 'ํด์นํ์ด์ปค' ์คํํธ์ ์ฐธ์ฌ ํ ์งํผํฐ์ค ์ปค๋ฎค๋ํฐ ์์ง๋์ด๋ก ํ๋</div> | |
</div> | |
</div> | |
<div class="section-group"> | |
<div class="group-title">๐ค ํ์ ์ฒ ํ</div> | |
<div class="philosophy-card"> | |
<div class="philosophy-content"> | |
์๋ก ๋ค๋ฅธ ์ธ์ด๋ฅผ ์ฌ์ฉํ๋๋ผ๋ ์๋๋ฐฉ์ ์ธ์ด๋ก ๋ฃ๊ณ ์ดํดํ๋ ค ๋ ธ๋ ฅํ๋ฉฐ, '<span class="highlight">๊ทธ๋ฐ๊ฐ๋ณด๋ค, ๊ทธ๋ด ์ ์์ง</span>'๋ผ๋ ๋ง์๊ฐ์ง์ผ๋ก ์๋๋ฐฉ์ ๋งฅ๋ฝ์ ์จ์ ํ ๋ฐ์๋ค์ด๋ ๊ด๊ณ๋ฅผ ์ด์์ ์ผ๋ก ์๊ฐํฉ๋๋ค. ์๊ฐ๊ณผ ๊ฐ์ ์ ์์ ๋กญ๊ฒ ํํํ๋ฉฐ ์๋๋ฐฉ์ ์๋ฏผํจ์ ๋ถํธํดํ์ง ์๋ ํธ์ ๋๋ค. | |
</div> | |
</div> | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment