Created
June 25, 2025 00:43
-
-
Save Dahye-Dyan/0b8b760493921153442751e90e702f1b 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: 30px; | |
-webkit-font-smoothing: antialiased; | |
-moz-osx-font-smoothing: grayscale; | |
} | |
.container { | |
max-width: 1100px; | |
margin: 0 auto; | |
} | |
.hero-section { | |
background: rgba(255, 255, 255, 0.98); | |
backdrop-filter: blur(25px); | |
border-radius: 32px; | |
padding: 50px 40px; | |
margin-bottom: 35px; | |
text-align: center; | |
box-shadow: 0 25px 80px rgba(0,0,0,0.2), 0 0 0 1px rgba(255,255,255,0.3); | |
border: 2px solid rgba(255,255,255,0.4); | |
} | |
.hero-avatar { | |
width: 130px; | |
height: 130px; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 50%; | |
margin: 0 auto 25px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-size: 3.5rem; | |
color: white; | |
box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4); | |
border: 4px solid rgba(255,255,255,0.3); | |
} | |
.hero-name { | |
font-size: 3rem; | |
font-weight: 900; | |
color: #1a202c; | |
margin-bottom: 15px; | |
text-shadow: 0 2px 4px rgba(0,0,0,0.1); | |
} | |
.hero-tagline { | |
font-size: 1.5rem; | |
color: #2d3748; | |
margin-bottom: 30px; | |
font-weight: 600; | |
line-height: 1.4; | |
} | |
.hero-tags { | |
display: flex; | |
justify-content: center; | |
gap: 18px; | |
flex-wrap: wrap; | |
} | |
.hero-tag { | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
color: white; | |
padding: 14px 28px; | |
border-radius: 30px; | |
font-size: 1.1rem; | |
font-weight: 700; | |
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4); | |
border: 2px solid rgba(255,255,255,0.2); | |
} | |
.main-grid { | |
display: grid; | |
grid-template-columns: 1fr 1fr; | |
gap: 35px; | |
} | |
.section-group { | |
background: rgba(255, 255, 255, 0.98); | |
backdrop-filter: blur(25px); | |
border-radius: 28px; | |
padding: 40px; | |
box-shadow: 0 25px 80px 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.8rem; | |
font-weight: 800; | |
color: #1a202c; | |
margin-bottom: 35px; | |
text-align: center; | |
position: relative; | |
text-shadow: 0 1px 2px rgba(0,0,0,0.1); | |
} | |
.group-title::after { | |
content: ''; | |
position: absolute; | |
bottom: -15px; | |
left: 50%; | |
transform: translateX(-50%); | |
width: 80px; | |
height: 4px; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 3px; | |
} | |
.info-card { | |
background: linear-gradient(135deg, #f8faff 0%, #f1f5ff 100%); | |
border-radius: 20px; | |
padding: 28px; | |
margin-bottom: 22px; | |
border: 2px solid #e2e8f0; | |
box-shadow: 0 8px 30px rgba(0,0,0,0.08); | |
transition: all 0.3s ease; | |
} | |
.info-card:hover { | |
transform: translateY(-3px); | |
box-shadow: 0 15px 40px rgba(0,0,0,0.15); | |
border-color: #667eea; | |
} | |
.info-card:last-child { | |
margin-bottom: 0; | |
} | |
.card-header { | |
display: flex; | |
align-items: center; | |
gap: 15px; | |
margin-bottom: 18px; | |
} | |
.card-icon { | |
width: 48px; | |
height: 48px; | |
background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 16px; | |
display: flex; | |
align-items: center; | |
justify-content: center; | |
font-size: 1.4rem; | |
color: white; | |
box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3); | |
} | |
.card-title { | |
font-size: 1.35rem; | |
font-weight: 800; | |
color: #1a202c; | |
text-shadow: 0 1px 2px rgba(0,0,0,0.05); | |
} | |
.card-content { | |
color: #2d3748; | |
line-height: 1.8; | |
font-size: 1.05rem; | |
font-weight: 500; | |
} | |
.highlight { | |
background: linear-gradient(135deg, #e6fffa 0%, #b2f5ea 100%); | |
color: #004d40; | |
padding: 4px 10px; | |
border-radius: 8px; | |
font-weight: 700; | |
border: 1px solid #4fd1c7; | |
} | |
.journey-timeline { | |
position: relative; | |
padding-left: 50px; | |
} | |
.journey-timeline::before { | |
content: ''; | |
position: absolute; | |
left: 20px; | |
top: 0; | |
bottom: 0; | |
width: 4px; | |
background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #f093fb 100%); | |
border-radius: 3px; | |
} | |
.timeline-item { | |
position: relative; | |
margin-bottom: 25px; | |
background: white; | |
padding: 20px 25px; | |
border-radius: 16px; | |
box-shadow: 0 6px 25px rgba(0,0,0,0.08); | |
border: 2px solid #f1f5f9; | |
font-weight: 500; | |
color: #2d3748; | |
line-height: 1.6; | |
} | |
.timeline-item::before { | |
content: ''; | |
position: absolute; | |
left: -45px; | |
top: 25px; | |
width: 16px; | |
height: 16px; | |
background: linear-gradient(135deg, #667eea 0%, #f093fb 100%); | |
border-radius: 50%; | |
border: 4px solid white; | |
box-shadow: 0 0 0 3px #667eea; | |
} | |
.collab-grid { | |
display: grid; | |
grid-template-columns: 1fr; | |
gap: 22px; | |
} | |
.collab-card { | |
background: white; | |
border-radius: 20px; | |
padding: 28px; | |
border: 2px solid #e2e8f0; | |
box-shadow: 0 8px 30px rgba(0,0,0,0.08); | |
transition: all 0.3s ease; | |
} | |
.collab-card:hover { | |
border-color: #667eea; | |
transform: translateY(-2px); | |
box-shadow: 0 15px 40px rgba(0,0,0,0.12); | |
} | |
.collab-header { | |
display: flex; | |
align-items: center; | |
gap: 15px; | |
margin-bottom: 15px; | |
} | |
.collab-icon { | |
font-size: 1.8rem; | |
} | |
.collab-title { | |
font-size: 1.25rem; | |
font-weight: 800; | |
color: #1a202c; | |
} | |
.collab-content { | |
color: #2d3748; | |
line-height: 1.7; | |
font-weight: 500; | |
font-size: 1.05rem; | |
} | |
.full-width { | |
grid-column: 1 / -1; | |
} | |
.philosophy-card { | |
background: linear-gradient(135deg, #fef7ff 0%, #f3e8ff 100%); | |
border: 3px solid #e9d5ff; | |
position: relative; | |
overflow: hidden; | |
} | |
.philosophy-card::before { | |
content: '"'; | |
position: absolute; | |
top: 15px; | |
right: 25px; | |
font-size: 5rem; | |
color: #8b5cf6; | |
opacity: 0.3; | |
font-family: serif; | |
font-weight: bold; | |
} | |
@media (max-width: 768px) { | |
.main-grid { | |
grid-template-columns: 1fr; | |
gap: 25px; | |
} | |
.hero-section { | |
padding: 35px 25px; | |
} | |
.section-group { | |
padding: 30px 25px; | |
} | |
.hero-name { | |
font-size: 2.5rem; | |
} | |
.hero-tagline { | |
font-size: 1.3rem; | |
} | |
body { | |
padding: 20px 15px; | |
} | |
.journey-timeline { | |
padding-left: 40px; | |
} | |
.timeline-item::before { | |
left: -38px; | |
} | |
} | |
</style> | |
</head> | |
<body> | |
<div class="container"> | |
<div class="hero-section"> | |
<div class="hero-avatar">๐</div> | |
<div class="hero-name">์ต์ง์ (์ง์)</div> | |
<div class="hero-tagline">์ฐ๊ฒฐ๊ณผ ๊ฐ์น๋ฅผ ์ค์ฌ์ผ๋ก ๊ฒฝํ์ ์ค๊ณํ๋ ์ปค๋ฎค๋ํฐ ๋งค๋์ </div> | |
<div class="hero-tags"> | |
<span class="hero-tag">์ฐ๊ฒฐ</span><span class="hero-tag">๊ฐ์น ์ค์ฌ</span><span class="hero-tag">๊ฒฝํ ์ค๊ณ</span> | |
</div> | |
</div> | |
<div class="main-grid"> | |
<div class="section-group"> | |
<div class="group-title">๐ฏ Core Identity</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 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">๋คํธ์ํฌ</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">์๋ก๊ฐ ์๊ฐ์ ์ฃผ๊ณ ํจ๊ป ์ฑ์ฅํ๋ ๊ด๊ณ์ ๊ฐ์น ์๋ ํ๋ฆ์ ๋ง๋ค์ด ๊ฐ๊ณ ์ถ์ต๋๋ค. ๋ค์ค๋ฉ ์์์ ์ฌ๋๋ค์ด ์์ฐ์ค๋ฝ๊ฒ ์ฐ๊ฒฐ๋๊ณ ์๊ธฐ ๊ฐ๋ฅ์ฑ์ ๋ฐ๊ฒฌํ ์ ์๋๋ก ๋๋ ์ญํ ์ ๋งก์ผ๋ฉฐ, ๋ชจ๋๊ฐ ์ฃผ์ธ๊ณต์ธ ์คํ์ฅ์ ์ค๊ณํ๊ณ ์ ํฉ๋๋ค.</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">๋ค๋ฅธ ์ฌ๋์ ์ฅ์ ์ ๋น ๋ฅด๊ฒ ํ์ ํด ์์ ๊ฐ์ ๋ถ๋์ ์ฃผ๋ฉฐ ์ฌ๋ฆฌ์ ์ผ๋ก ์ง์งํ๊ณ ๋ฐ๋ปํ ๋ํ๋ฅผ ํตํด ์ฉ๊ธฐ๋ฅผ ์ค ์ ์์ต๋๋ค. ์๊ธฐ ์๋ ๋ชจ์์ ํ๋ ฅ์ ๋ถ์ด๋ฃ๋ ๊ฒฝํ๋ ๊ฐ์ง๊ณ ์์ต๋๋ค.</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">์๋ฏธ์ ์๋์ง๋ฅผ ์ค์ํ๋ <span class="highlight">์คํ ํํธ๋</span>๊ฐ ํ์ํฉ๋๋ค. ํผ์๋ณด๋ค ํจ๊ป ์ค์ฌ์ ์ก๊ณ ์คํํ๋ฉฐ, <span class="highlight">๊ด๊ณ ์ค์ฌ</span>์ ๋ํ๋ฅผ ํตํด ์๋ก ์ง์ฌ์ ๋ง์ฃผ๋ณด๋ฉฐ ํ๋ณตํ ์ ์๋ ๋๋ฃ๋ฅผ ์ฐพ๊ณ ์์ต๋๋ค.</div> | |
</div> | |
</div> | |
</div> | |
<div class="section-group full-width"> | |
<div class="group-title">๐ค๏ธ ๋๋ฅผ ๋ง๋ ์ฌ์ </div> | |
<div class="journey-timeline"> | |
<div class="timeline-item"><span class="highlight">๋ฏธ๊ตญ ์ธํด์ญ</span> ๋ฐ ์ดํ์ฐ์, ํด์ธ ํฌ๋ผ ์ฐธ๊ฐ์ ์ฌํ์ ํตํ ๋ค์ํ ๊ฒฝํ</div><div class="timeline-item">์๊ตญ ํ๋ํฐ์ด ๊ฐ๋ฐ์์ ๋ชจ๋์์ฐ๊ตฌ์ ์ปค๋ฎค๋ํฐ ๊ฐ๋ฐ์ ๋ฐ์ ์ฃผ์ต ๊ฒฝํ</div><div class="timeline-item">์๊ท๋ชจ <span class="highlight">๋ฐ์ ๊ธฐํ</span>๊ณผ ๊ธ๋ก๋ฒ ์ปค๋ฅ์ ์์นด์ด๋น ๊ตฌ์ ์ค</div><div class="timeline-item">์ปค๋ฎค๋ํฐ ๋งค๋์ ๋ก์ ๋คํธ์ํน๊ณผ ๋ชจ์ ์ค๊ณ์ ์ง์ค</div><div class="timeline-item">๊ฐ์ ๊ณผ <span class="highlight">๊ฐ๊ฐ ํ๋ณต</span>์ ์ํ ๋ํก์ค ์ฃผ๊ฐ ์ค์ฒ</div> | |
</div> | |
</div> | |
<div class="section-group full-width"> | |
<div class="group-title">๐ค ํ์ ์ฒ ํ</div> | |
<div class="info-card philosophy-card"> | |
<div class="card-content" style="font-size: 1.15rem; font-style: italic; font-weight: 600;"> | |
ํ์ ์ <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