| | <!DOCTYPE html> |
| | <html lang="ko"> |
| | <head> |
| | <meta charset="UTF-8"> |
| | <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| | <title>์ด๋ค์ ๊ฐ์ฌ ์ด๋ ฅ์นด๋</title> |
| | <script src="https://cdn.tailwindcss.com"></script> |
| | <link href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;700&display=swap" rel="stylesheet"> |
| | <link href="https://unpkg.com/aos@2.3.1/dist/aos.css" rel="stylesheet"> |
| | <script src="https://unpkg.com/aos@2.3.1/dist/aos.js"></script> |
| | <script src="https://unpkg.com/feather-icons"></script> |
| | <style> |
| | body { |
| | font-family: 'Noto Sans KR', sans-serif; |
| | background: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 50%, #f0f9ff 100%); |
| | font-size: 16px; |
| | } |
| | .section-title { |
| | position: relative; |
| | padding-bottom: 12px; |
| | font-weight: 600; |
| | font-size: 1.5rem; |
| | } |
| | .section-title::after { |
| | content: ''; |
| | position: absolute; |
| | bottom: 0; |
| | left: 0; |
| | width: 40px; |
| | height: 3px; |
| | background: linear-gradient(90deg, #ec4899, #8b5cf6); |
| | border-radius: 2px; |
| | } |
| | .card-shadow { |
| | box-shadow: 0 15px 35px rgba(0,0,0,0.08); |
| | border-radius: 20px; |
| | border: 1px solid rgba(255,255,255,0.3); |
| | backdrop-filter: blur(10px); |
| | background: rgba(255,255,255,0.95); |
| | } |
| | .gradient-text { |
| | background: linear-gradient(135deg, #ec4899, #8b5cf6); |
| | -webkit-background-clip: text; |
| | -webkit-text-fill-color: transparent; |
| | background-clip: text; |
| | } |
| | .header-gradient { |
| | background: linear-gradient(135deg, #fdf4ff 0%, #faf5ff 100%); |
| | border-bottom: 1px solid rgba(255,255,255,0.5); |
| | } |
| | .footer-gradient { |
| | background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%); |
| | } |
| | .hover-lift { |
| | transition: transform 0.2s ease, box-shadow 0.2s ease; |
| | } |
| | .hover-lift:hover { |
| | transform: translateY(-3px); |
| | box-shadow: 0 20px 40px rgba(0,0,0,0.12); |
| | } |
| | .icon-gradient { |
| | background: linear-gradient(135deg, #ec4899, #8b5cf6); |
| | -webkit-background-clip: text; |
| | -webkit-text-fill-color: transparent; |
| | background-clip: text; |
| | } |
| | |
| | |
| | @media (max-width: 768px) { |
| | body { |
| | font-size: 15px; |
| | } |
| | h1 { |
| | font-size: 1.8rem !important; |
| | } |
| | h2 { |
| | font-size: 1.4rem !important; |
| | } |
| | h3 { |
| | font-size: 1.1rem !important; |
| | } |
| | .section-title { |
| | font-size: 1.3rem; |
| | } |
| | .text-3xl { |
| | font-size: 1.6rem !important; |
| | } |
| | .text-2xl { |
| | font-size: 1.4rem !important; |
| | } |
| | .text-lg { |
| | font-size: 1.1rem !important; |
| | } |
| | .text-sm { |
| | font-size: 0.9rem !important; |
| | } |
| | .text-xs { |
| | font-size: 0.8rem !important; |
| | } |
| | .container { |
| | padding-left: 1rem; |
| | padding-right: 1rem; |
| | } |
| | .card-shadow { |
| | padding: 1.5rem !important; |
| | margin-bottom: 1rem !important; |
| | } |
| | .grid { |
| | gap: 1rem !important; |
| | } |
| | table { |
| | font-size: 0.85rem; |
| | } |
| | .w-24 { |
| | width: 5rem; |
| | } |
| | .space-y-4 > * + * { |
| | margin-top: 0.75rem; |
| | } |
| | } |
| | |
| | @media (max-width: 480px) { |
| | body { |
| | font-size: 14px; |
| | } |
| | h1 { |
| | font-size: 1.6rem !important; |
| | } |
| | h2 { |
| | font-size: 1.3rem !important; |
| | } |
| | h3 { |
| | font-size: 1rem !important; |
| | } |
| | .section-title { |
| | font-size: 1.2rem; |
| | } |
| | .text-3xl { |
| | font-size: 1.4rem !important; |
| | } |
| | .text-2xl { |
| | font-size: 1.3rem !important; |
| | } |
| | table { |
| | font-size: 0.8rem; |
| | } |
| | .w-24 { |
| | width: 4rem; |
| | } |
| | .space-y-4 > * + * { |
| | margin-top: 0.5rem; |
| | } |
| | } |
| | </style> |
| | </head> |
| | <body class="bg-gray-50"> |
| | |
| | <header class="header-gradient py-8"> |
| | <div class="container mx-auto px-4 flex justify-between items-center"> |
| | <div class="flex items-center space-x-6"> |
| | <div class="w-24 h-24 rounded-full overflow-hidden border-4 border-white shadow-lg"> |
| | <img src="http://static.photos/education/200x200/42" alt="์ด๋ค์ ๊ฐ์ฌ ํ๋กํ ์ฌ์ง" class="w-full h-full object-cover"> |
| | </div> |
| | <div> |
| | <h1 class="text-3xl font-bold gradient-text">๊ฐ์ฌ ์ด๋ ฅ์นด๋</h1> |
| | <p class="text-gray-600 mt-1">์ ๋ฌธ๊ฐ์ฌ ์ด๋ค์</p> |
| | </div> |
| | </div> |
| | </div> |
| | </header> |
| |
|
| | <main class="container mx-auto px-4 py-12"> |
| | |
| | <section class="mb-12" data-aos="fade-up"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">๊ธฐ๋ณธ ์ ๋ณด</h2> |
| | <div class="grid grid-cols-1 md:grid-cols-2 gap-6"> |
| | <div class="space-y-4"> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">์ฑ๋ช
</span> |
| | <span class="text-gray-800">์ด๋ค์</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">์๋
์์ผ</span> |
| | <span class="text-gray-800">1976.11.29</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">์์</span> |
| | <span class="text-gray-800">๊ตญ๋ฆฝํต์ผ๊ต์ก์</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">์ง์(๊ธ)</span> |
| | <span class="text-gray-800">์ ๋ฌธ๊ฐ์ฌ</span> |
| | </div> |
| | </div> |
| | <div class="space-y-4"> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">ํด๋์ ํ</span> |
| | <span class="text-gray-800">010 9019 8087</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">E-mail</span> |
| | <span class="text-gray-800">da33csy@naver.com</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">์ฃผ์</span> |
| | <span class="text-gray-800">๊ฒฝ๊ธฐ๋ ์ค์ฐ์ ๋ถ์ฐ์ค์๋ก42<br>์ค์ฐ์ํฐ์์ด2์ฐจ์ํํธ</span> |
| | </div> |
| | <div class="flex"> |
| | <span class="w-24 font-medium text-gray-600">๊ณ์ข๋ฒํธ</span> |
| | <span class="text-gray-800">1002 786 982982<br>์ฐ๋ฆฌ์ํ</span> |
| | </div> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="mb-12" data-aos="fade-up" data-aos-delay="100"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">ํ๋ ฅ</h2> |
| | <div class="overflow-x-auto"> |
| | <table class="min-w-full divide-y divide-gray-200"> |
| | <thead class="bg-gray-50"> |
| | <tr> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์ฐ๋</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ํ๊ต๋ช
</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ํ๊ณผ(์ ๊ณต)</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">ํ์</th> |
| | </tr> |
| | </thead> |
| | <tbody class="bg-white divide-y divide-gray-200"> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2012</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๋์ฑ์ฌ์๋ํ๊ต</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ฌํ๋ณต์ง</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ์ฌ</td> |
| | </tr> |
| | </tbody> |
| | </table> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="mb-12" data-aos="fade-up" data-aos-delay="200"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">๊ฒฝ๋ ฅ</h2> |
| | <div class="overflow-x-auto"> |
| | <table class="min-w-full divide-y divide-gray-200"> |
| | <thead class="bg-gray-50"> |
| | <tr> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์ฐ๋</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">๊ธฐ๊ด๋ช
</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์ง์(๊ธ)</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์ฃผ์์
๋ฌด</th> |
| | </tr> |
| | </thead> |
| | <tbody class="bg-white divide-y divide-gray-200"> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2025</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ค์ฐ์๋ฏผ์ฃผํํํต์ผ์๋ฌธํ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์๋ฌธ์์</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2012~ํ์ฌ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํต์ผ๋ถ ๊ตญ๋ฆฝํต์ผ๊ต์ก์</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ ๋ฌธ๊ฐ์ฌ</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2022~ํ์ฌ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ๋ฐ๋ํต์ผ๋ฏธ๋์ผํฐ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ ๋ฌธ๊ฐ์ฌ</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2017~ํ์ฌ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๊ตญ๋ฐฉ๋ถ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์๋ณด๊ฐ์ฌ</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2023~ํ์ฌ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๊ตญ๋ฆฝํต์ผ๊ต์ก์ ํ๊ตํต์ผ์ฒดํ๊ต์ก</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๊ฐ์ฌ</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2023~ํ์ฌ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํผ์ค๋ฉ์ด์ปค</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๋ํ๊ฐ์ฌ</td> |
| | <td class="px-4 py-4 text-sm text-gray-800"></td> |
| | </tr> |
| | </tbody> |
| | </table> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="mb-12" data-aos="fade-up" data-aos-delay="300"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">์๊ฒฉ์ฆ</h2> |
| | <div class="overflow-x-auto"> |
| | <table class="min-w-full divide-y divide-gray-200"> |
| | <thead class="bg-gray-50"> |
| | <tr> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์ฐ๋</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">์๊ฒฉ์ฆ๋ช
</th> |
| | <th class="px-4 py-3 text-left text-xs font-medium text-gray-500 uppercase tracking-wider">๋ฐ๋ น์ฒญ</th> |
| | </tr> |
| | </thead> |
| | <tbody class="bg-white divide-y divide-gray-200"> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2018</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ธ์ฑ์ง๋์ฌ1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ๊ตญํ์ํ์ต์งํฅ์</td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2018</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๋ค๋ฌธํ์ฌ๋ฆฌ์๋ด์ฌ1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ๊ตญ์ง์
๋ฅ๋ ฅ์</td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2014</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ค๋ฒ๋ผ์ดํ์ฝ์น1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ๊ตญ์ฌ์ฑ๊ต์ก๊ฐ๋ฐ์</td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2022</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์คํผ์น์ง๋์ฌ1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํ๊ตญ๊ต์ก๊ฒ์ ์</td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2025</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">ํก์ฐ์๋ฐฉ๊ต์ก๊ฐ์ฌ1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ค์์ธ์ฌ๊ต์กํ๊ฐ์</td> |
| | </tr> |
| | <tr> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">2025</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">๋ง์ฝ์๋ฐฉ๊ต์ก๊ฐ์ฌ1๊ธ</td> |
| | <td class="px-4 py-4 whitespace-nowrap text-sm text-gray-800">์ค์์ธ์ฌ๊ต์กํ๊ฐ์</td> |
| | </tr> |
| | </tbody> |
| | </table> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section class="mb-12" data-aos="fade-up" data-aos-delay="400"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">๊ฐ์ ์ฃผ์ ๋ฐ ๋ด์ฉ</h2> |
| | <div class="space-y-4"> |
| | <div> |
| | <h3 class="font-bold text-lg text-gray-800 mb-2">๋ถํ์ ์ง๊ธ ๋ญํ์ง?</h3> |
| | <ul class="list-disc pl-5 space-y-1 text-gray-700"> |
| | <li>๋ถํ์ ์ด๋ค ๊ณณ์ผ๊น?</li> |
| | <li>๋ถํ์ ๊ฒฝ์ </li> |
| | <li>๋ถํ์ ๋ฌธํยท์ํ</li> |
| | <li>๋ถํ์ ํ๊ต์ํ</li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| |
|
| | |
| | <section data-aos="fade-up" data-aos-delay="500"> |
| | <div class="card-shadow p-8 hover-lift"> |
| | <h2 class="text-2xl font-semibold text-gray-800 mb-8 section-title">๋ฐฉ์ก์ถ์ฐ</h2> |
| | <div class="space-y-4"> |
| | <div> |
| | <h3 class="font-bold text-gray-800 mb-2">TV ์ถ์ฐ</h3> |
| | <ul class="list-disc pl-5 space-y-1 text-gray-700"> |
| | <li>์ฑ๋A "์ด์ ๋ง๋๋ฌ๊ฐ๋๋ค."</li> |
| | <li>TV์กฐ์ "๋ชจ๋๋ดํด๋ฝ"</li> |
| | <li>KBS ์ถ์ฐ</li> |
| | <li>EBS ์ถ์ฐ</li> |
| | </ul> |
| | </div> |
| | <div> |
| | <h3 class="font-bold text-gray-800 mb-2">๋ผ๋์ค ์ถ์ฐ</h3> |
| | <ul class="list-disc pl-5 space-y-1 text-gray-700"> |
| | <li>์ ๋ณด ์์</li> |
| | </ul> |
| | </div> |
| | </div> |
| | </div> |
| | </section> |
| | </main> |
| |
|
| | |
| | <footer class="footer-gradient text-white py-12 mt-16"> |
| | <div class="container mx-auto px-4 text-center"> |
| | <p class="text-gray-300">ยฉ 2025 ์ด๋ค์ ๊ฐ์ฌ. All rights reserved.</p> |
| | <p class="text-gray-400 mt-2">์ ๋ฌธ์ ์ธ ๊ฐ์์ ๋ฐ๋ปํ ๋ง์์ผ๋ก ์ฌ๋ฌ๋ถ์ ๋ง๋๋ต๊ฒ ์ต๋๋ค</p> |
| | </div> |
| | </footer> |
| |
|
| | <script> |
| | feather.replace(); |
| | AOS.init({ |
| | duration: 800, |
| | easing: 'ease-out-cubic', |
| | once: true |
| | }); |
| | |
| | |
| | document.addEventListener('DOMContentLoaded', function() { |
| | const cards = document.querySelectorAll('.hover-lift'); |
| | cards.forEach(card => { |
| | card.addEventListener('mouseenter', () => { |
| | card.style.transition = 'transform 0.3s ease, box-shadow 0.3s ease'; |
| | }); |
| | }); |
| | }); |
| | </script> |
| | </body> |
| | </html> |
| |
|