-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
380 lines (371 loc) · 17.5 KB
/
index.html
File metadata and controls
380 lines (371 loc) · 17.5 KB
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
<!doctype html>
<html lang="ko" class="dark">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark" />
<meta name="theme-color" content="#001f4d" />
<title>meozigoon</title>
<link rel="icon" href="image/icon.png" />
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
accent: "#001f4d",
glass: "rgba(255,255,255,0.08)",
},
boxShadow: {
glass: "0 8px 30px rgba(0,0,0,0.3)",
},
backdropBlur: {
xl: "20px",
},
},
},
darkMode: "class",
};
</script>
<link rel="stylesheet" href="style.css" />
</head>
<body class="bg-slate-950 text-slate-100">
<!-- Background accents -->
<div aria-hidden="true" class="fixed inset-0 -z-10">
<div
class="absolute -top-24 -left-24 h-72 w-72 rounded-full bg-accent/20 blur-3xl"
></div>
<div
class="absolute top-48 -right-20 h-80 w-80 rounded-full bg-blue-700/20 blur-3xl"
></div>
</div>
<header
class="sticky top-0 z-50 backdrop-blur-xl bg-slate-950/60 border-b border-white/10"
>
<div
class="mx-auto max-w-6xl px-4 h-16 flex items-center justify-between"
>
<a
href="#top"
class="font-semibold tracking-tight text-slate-100"
>meozigoon</a
>
<nav class="hidden md:flex gap-6 text-sm text-slate-300">
<a href="#about" class="hover:text-white">소개</a>
<a href="#affiliations" class="hover:text-white">소속</a>
<a href="#projects" class="hover:text-white">프로젝트</a>
<a href="#timeline" class="hover:text-white">연도별 이력</a>
<a href="#contact" class="hover:text-white">연락처</a>
</nav>
<a
href="https://github.com/meozigoon"
target="_blank"
rel="noopener"
class="text-xs md:text-sm px-3 py-1.5 rounded-full bg-accent/80 hover:bg-accent transition-colors"
>GitHub</a
>
</div>
</header>
<main id="top" class="mx-auto max-w-6xl px-4 py-10 md:py-14 space-y-10">
<!-- Hero -->
<section class="glass rounded-3xl p-8 md:p-12">
<div
class="flex flex-col md:flex-row items-start md:items-center gap-6"
>
<img
src="image/icon.png"
alt="img"
class="w-24 h-24 md:w-28 md:h-28 rounded-2xl ring-1 ring-white/10 shadow-glass object-cover"
/>
<div class="flex-1">
<h1
class="text-3xl md:text-4xl font-bold tracking-tight"
>
이동하
<span
class="text-slate-300 text-xl md:text-2xl align-middle"
>(DH.L / meozigoon)</span
>
</h1>
<div class="mt-4 flex flex-wrap gap-2">
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>C++</span
>
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>C#</span
>
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>Python</span
>
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>Web</span
>
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>AI</span
>
<span
class="px-3 py-1 rounded-full bg-white/10 text-xs"
>PCB</span
>
</div>
</div>
</div>
</section>
<!-- About -->
<section id="about" class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="glass rounded-3xl p-6 md:col-span-2">
<h2 class="text-xl font-semibold">소개</h2>
<div class="divider my-4"></div>
<p class="leading-7 text-slate-300">
과학고 학생으로서 화학 · 생명과학 지식을 바탕으로
정보과학(알고리즘, 시스템, 웹, 임베디드, AI)을 융합하는
활동을 하고 있습니다. C++ 문제해결, C# 윈도우
애플리케이션, ESP32 기반 IoT·원격제어, PCB 설계,
Firebase 인증 기반 웹, ML.NET/파이썬 기반 머신러닝 등
다양한 분야에 도전하고 있습니다.
</p>
</div>
<div class="glass rounded-3xl p-6">
<h3 class="text-lg font-semibold">관심사</h3>
<div class="divider my-4"></div>
<ul class="grid grid-cols-1 gap-2 text-slate-300 text-sm">
<li>프로그래밍 언어 이론</li>
<li>임베디드 시스템</li>
<li>AI/ML (ML.NET, Python)</li>
<li>웹 프론트엔드/백엔드</li>
<li>
알고리즘 및 문제해결 (<a
class="underline underline-offset-2 hover:text-white"
href="https://www.acmicpc.net/user/meozigoon"
target="_blank"
rel="noopener"
>BOJ</a
>,
<a
class="underline underline-offset-2 hover:text-white"
href="https://solved.ac/profile/meozigoon"
target="_blank"
rel="noopener"
>solved.ac</a
>)
</li>
<li>전자회로 · PCB 설계</li>
</ul>
</div>
</section>
<!-- Affiliations -->
<section id="affiliations" class="glass rounded-3xl p-6">
<h2 class="text-xl font-semibold">소속</h2>
<div class="divider my-4"></div>
<div class="grid grid-cols-1 md:grid-cols-3 gap-4">
<a
href="https://hansungsh.sen.hs.kr/"
target="_blank"
rel="noopener"
class="block rounded-2xl p-5 bg-white/5 hover:bg-white/10 transition-colors"
>
<div class="text-sm text-slate-400">School</div>
<div class="font-semibold">한성과학고등학교</div>
<div class="text-slate-400 text-sm mt-1">
Hansung Science High School
</div>
</a>
<a
href="https://www.toyotech.dev"
target="_blank"
rel="noopener"
class="block rounded-2xl p-5 bg-white/5 hover:bg-white/10 transition-colors"
>
<div class="text-sm text-slate-400">Organization</div>
<div class="font-semibold">Team ToyoTech</div>
<div class="text-slate-400 text-sm mt-1">
Firmware · Frontend
</div>
</a>
<a
href="https://github.com/HSSHESC"
target="_blank"
rel="noopener"
class="block rounded-2xl p-5 bg-white/5 hover:bg-white/10 transition-colors"
>
<div class="text-sm text-slate-400">Club</div>
<div class="font-semibold">ESC</div>
<div class="text-slate-400 text-sm mt-1">
한성과학고 정보공학 동아리
</div>
</a>
</div>
</section>
<!-- Projects -->
<section id="projects" class="glass rounded-3xl p-6">
<h2 class="text-xl font-semibold">프로젝트</h2>
<div class="divider my-4"></div>
<div
class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-3 gap-4"
>
<a
href="https://wish.docs.toyotech.dev"
target="_blank"
rel="noopener"
class="block p-5 rounded-2xl bg-white/5 hover:bg-white/10"
>
<div class="font-semibold">WI:SH Kiosk</div>
<p class="text-sm text-slate-400 mt-1">
고령층을 위한 필기 인식 기반 키오스크 시스템
</p>
</a>
<a
href="https://skkoa.toyotech.dev/"
target="_blank"
rel="noopener"
class="block p-5 rounded-2xl bg-white/5 hover:bg-white/10"
>
<div class="font-semibold">SKKOA; LTW</div>
<p class="text-sm text-slate-400 mt-1">
한글 중심 아키텍쳐를 갖춘 초보자용 프로그래밍 언어
및 웹 실행 환경
</p>
</a>
</div>
</section>
<!-- Timeline -->
<section id="timeline" class="glass rounded-3xl p-6">
<div class="flex items-center justify-between gap-4">
<h2 class="text-xl font-semibold">연도별 이력</h2>
<button
id="toggleYears"
class="text-xs px-3 py-1.5 rounded-full bg-white/10 hover:bg-white/20 transition"
>
전체 연도 보기
</button>
</div>
<div class="divider my-4"></div>
<div id="timelineList" class="space-y-6">
<!-- 2025 ~ 현재 -->
<div class="year-block" data-year="2025">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-accent"></div>
<h3 class="font-semibold">현재</h3>
</div>
<ul
class="mt-2 list-disc list-inside text-slate-300 text-sm"
>
<li>한성과학고등학교 34기 재학</li>
<li>Team ToyoTech 활동</li>
</ul>
</div>
<div class="year-block hidden" data-year="2025-2">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-accent"></div>
<h3 class="font-semibold">2025</h3>
</div>
<ul
class="mt-2 list-disc list-inside text-slate-300 text-sm"
>
<li>성서중학교 졸업 (제39회, 전교 1등)</li>
<li>solved.ac Platinum 3</li>
</ul>
</div>
<!-- 2023 -->
<div class="year-block hidden" data-year="2023">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-accent"></div>
<h3 class="font-semibold">2023</h3>
</div>
<ul
class="mt-2 list-disc list-inside text-slate-300 text-sm"
>
<li>단대소고 주니어 프로그래밍 경진대회 은상</li>
</ul>
</div>
<!-- 2022 -->
<div class="year-block hidden" data-year="2022">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-accent"></div>
<h3 class="font-semibold">2022</h3>
</div>
<ul
class="mt-2 list-disc list-inside text-slate-300 text-sm"
>
<li>
삼성 주니어 SW 창작대회 본선 (장애 이해 체험
게임 기획)
</li>
<li>서울성서초등학교 졸업 (제38회)</li>
</ul>
</div>
<!-- 2021 -->
<div class="year-block hidden" data-year="2021">
<div class="flex items-center gap-2">
<div class="w-2 h-2 rounded-full bg-accent"></div>
<h3 class="font-semibold">2021</h3>
</div>
<ul
class="mt-2 list-disc list-inside text-slate-300 text-sm"
>
<li>
우수과학어린이 과학기술정보통신부 장관상 (제54회
과학의 날)
</li>
</ul>
</div>
</div>
</section>
<!-- Contact -->
<section id="contact" class="glass rounded-3xl p-6">
<h2 class="text-xl font-semibold">연락처</h2>
<div class="divider my-4"></div>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4 text-sm">
<div class="rounded-2xl p-5 bg-white/5">
<div class="text-slate-400">Email</div>
<div class="font-semibold mt-1 space-y-1">
<div>
<a
class="underline underline-offset-2 hover:text-white"
href="mailto:meozigoon@gmail.com"
>meozigoon@gmail.com</a
>
</div>
<div>
<a
class="underline underline-offset-2 hover:text-white"
href="mailto:34-098@hansung-sh.hs.kr"
>34-098@hansung-sh.hs.kr</a
>
</div>
<div>
<a
class="underline underline-offset-2 hover:text-white"
href="mailto:dhlee@toyotech.dev"
>dhlee@toyotech.dev</a
>
</div>
</div>
</div>
<div class="rounded-2xl p-5 bg-white/5">
<div class="text-slate-400">Instagram</div>
<div class="font-semibold mt-1">
<a
id="igLink"
class="underline underline-offset-2 hover:text-white"
href="https://www.instagram.com/meozigoon/"
target="_blank"
rel="noopener"
>@meozigoon</a
>
</div>
</div>
</div>
</section>
<footer class="pt-2 pb-8 text-center text-xs text-slate-400">
© <span id="yearNow"></span> DH.L. All rights reserved.
</footer>
</main>
<script src="script.js"></script>
</body>
</html>