-
Notifications
You must be signed in to change notification settings - Fork 33
/
Copy pathindex.html
1119 lines (1117 loc) · 61 KB
/
index.html
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
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="Kije’s LAB" />
<meta name="keywords" content="template, theme, portfolio, developer" />
<meta name="description" content="One Page Template for Developer Portfolio" />
<title>One Page Template for Developer Portfolio</title>
<link rel="preconnect" href="https://fonts.gstatic.com" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mukta:wght@300;500;800&display=swap" />
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500&display=swap" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.3.0/font/bootstrap-icons.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.carousel.min.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/OwlCarousel2/2.3.4/assets/owl.theme.default.min.css" />
<link rel="stylesheet" href="/css/style.css" />
<link rel="stylesheet" href="/css/theme.css" />
<link rel="stylesheet" href="/css/theme-dark.css" media="(prefers-color-scheme: dark)">
</head>
<body>
<!-- Header 시작 -->
<header>
<div class="container">
<h1>개발자 <strong>류준열</strong> 입니다</h1>
</div>
</header>
<!-- Header 끝 -->
<!-- Navbar 시작 -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="container-fluid text-uppercase">
<a class="navbar-brand" href="#">RYU JUN YEOL</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse sticky-fixed" id="navbarNav">
<ul class="navbar-nav me-auto">
<li class="nav-item">
<a class="nav-link" href="#summary">Summary</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#project">Project</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#awards">Awards</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#stacks">Stacks</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#education">Education</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#document">Document</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#salary">Salary</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#contact">Contact</a>
</li>
</ul>
<form class="d-flex">
<div class="btn-box">
<a href="https://restpack.io/html2pdf/save-as-pdf" class="btn btn-3" target="_blank" >SAVE PDF</a>
</div>
<button type="button" data-use-dark-mode="true" class="btn btn-dark btn-toggle me-2">
Dark
</button>
<button type="button" data-use-dark-mode="false" class="btn btn-light btn-toggle border">
White
</button>
</form>
</div>
</div>
</nav>
<!-- Navbar 끝 -->
<!-- Main 시작 -->
<main>
<!-- Summary 시작 -->
<section class="container pt mt" id="summary">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Summary</h2>
<p class="color-basic fonsiz-xl fonwei-kr-xs letsp-xs ws-sm mt-4">
안녕하세요. <span class="fonwei-en-xl letsp-md">Javascript Fullstack</span>개발자 류준열입니다.
저는 올해 22살이며, 상상하는 것을 만들 수 있다는 것에 매력을 느껴
<span class="fonwei-en-xl letsp-md">Hardcore Coding Style</span>에 중독되어 버린 젊은 청춘입니다.
린 스타트업 <span class="letsp-md">(Lean Startup)</span> , 린 사고방식 <span class="letsp-md">(Lean Thinking)</span>,
애자일 <span class="letsp-md">(Agile)</span> 방법론 등,
<span class="fonwei-kr-md"> 개발자를 창조적으로 괴롭히는 혁신적인 방식</span>을
<span class="fonwei-kr-md">사랑</span>합니다.
</p>
</div>
</div>
</section>
<!-- Summary 끝 -->
<!-- Project 시작 -->
<section class="container pt mt" id="project">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Project</h2>
<div class="section-desc fonsiz-sm color-basic-opac letsp-sm ws-xs mt-2 mb-4">
저는 프로젝트의 시작보다는 마무리에 집중합니다.
한번 시작한 프로젝트는 혼자라도 반드시 마무리합니다.
</div>
<div class="card shadow">
<div class="card-body">
<div class="table-responsive">
<table class="table borderless table-hover align-middle">
<thead class="border-0 borderless" border="0">
<tr class="fonsiz-sm fonwei-kr-md letsp-sm color-basic-opac text-center vertmid">
<th>프로젝트</th>
<th>소개</th>
<th>개발 참여도</th>
<th>추가 정보</th>
</tr>
</thead>
<tbody>
<tr>
<th class="table-title" scope="col">개발한 프로젝트 서비스</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-inprogress">In Progress</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">( ~ M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 100%">
<span class="progress-desc">개발중</span>
</div>
</div>
<div class="progress-desc">프론트엔드 단독 개발</div>
</td>
<td class="text-center">
<span class="text-muted" data-bs-toggle="modal" data-bs-target="#Modal1">
<i class="bi bi-file-earmark-slides"></i>
<div class="modal fade" id="Modal1" tabindex="-1" aria-labelledby="Modal1Label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="Modal1Label">개발 프로젝트 증빙 자료</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="assets/svg/your-project.svg" alt="">
<p class="modal-desc">
여기에 개발한 프로젝트에 대한 상세한 내용(서비스 개요, 사용 프로그램 언어, 사용 라이브러리, 개발 기여도, 개발 기간, 외부 링크 등을 입력해 주세요.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">개발한 프로젝트 서비스</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-inprogress">In Progress</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">( ~ M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped progress-bar-animated" style="width: 100%">
<span class="progress-desc">개발중</span>
</div>
</div>
<div class="progress-desc">백엔드 단독 개발</div>
</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">개발한 프로젝트 서비스</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-done">Done</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">(0.5M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-info" style="width: 100%">
<span class="progress-desc">100%</span>
</div>
</div>
<div class="progress-desc">백엔드 개발</div>
</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">오픈 소스 프로젝트</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-done">Done</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">(3M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-info" style="width: 100%">
<span class="progress-desc">100%</span>
</div>
</div>
<div class="progress-desc">프론트엔드 일부 개발</div>
</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">개발한 프로젝트 서비스</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-refactoring">Refactoring</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">(5M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-info" style="width: 100%">
<span class="progress-desc">100%</span>
</div>
</div>
<div class="progress-desc">퍼블리싱 개발</div>
</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">개발한 프로젝트 서비스</th>
<td>
<div>[회사명] + 서비스명 + 서비스의 간략한 개요</div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-renewal">Renewal</span>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
</td>
<td class="text-center">
<div class="">(3M/M)</div>
<div class="progress">
<div class="progress-bar progress-bar-striped bg-info" style="width: 100%">
<span class="progress-desc">100%</span>
</div>
</div>
<div class="progress-desc">백앤드 일부 개발</div>
</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table-desc fonsiz-xs fonwei-kr-sm letsp-sm text-center color-basic-opac">프로젝트들은 최근 개발한 순으로 정렬되어 있습니다</div>
</div>
</div>
</section>
<!-- Project 끝 -->
<!-- Awards 시작 -->
<section class="container pt mt" id="awards">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Awards</h2>
<div class="section-desc fonsiz-sm color-basic-opac letsp-sm ws-xs mt-2 mb-4">
다양한 사람들과 협업을 통해서 함께 공동의 목표를 성취해 나가는 것에 관심이 많습니다.
실패를 겁내지 않고 도전하는 것이 행복합니다.
</div>
<div class="card shadow">
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover align-middle">
<thead>
<tr class="fonsiz-sm fonwei-kr-md letsp-sm color-basic-opac text-center vertmid">
<th>대회</th>
<th>세부 사항 </th>
<th>수상</th>
<th>증빙자료</th>
</tr>
</thead>
<tbody>
<tr>
<th class="table-title" scope="col">2021 국제 해커톤</th>
<td>
<div>[참여팀명] + 대회의 간략한 개요 + 서비스의 개요 </div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
<div class="profile">
<img src="/assets/img/user1.jpg" alt="">
<img src="/assets/img/user2.jpg" alt="">
<img src="/assets/img/user3.jpg" alt="">
<img src="/assets/img/user4.jpg" alt="">
<img src="/assets/img/user5.jpg" alt="">
</div>
</td>
<td class="fonsiz-md letsp-sm fonwei-kr-md text-center color-basic-opac">대상</td>
<td class="text-center">
<span class="text-muted" data-bs-toggle="modal" data-bs-target="#myModal2" >
<i class="bi bi-file-earmark-slides"></i>
</span>
<!-- Modal 시작 -->
<div class="modal fade" id="myModal2" tabindex="-1" aria-labelledby="myModal2Label" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModal2Label">시상식 증빙 자료 </h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<img src="assets/svg/your-awards.svg" class="modal-img" alt="">
<p class="modal-desc">
여기에 시상에 대한 증빙 자료(수상 관련 사진, 관련 발표 자료등)를 입력해 주세요.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary">Save changes</button> -->
</div>
</div>
</div>
</div>
<!-- Modal 끝 -->
</td>
</tr>
<tr>
<th class="table-title" scope="col">2021 판교 창업 경진 대회</th>
<td>
<div>[참여팀명] + 대회의 간략한 개요 + 서비스의 개요 </div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
<div class="profile">
<img src="/assets/img/user1.jpg" alt="">
<img src="/assets/img/user2.jpg" alt="">
<img src="/assets/img/user3.jpg" alt="">
</div>
</td>
<td class="fonsiz-md letsp-sm fonwei-kr-md text-center color-basic-opac">최우수상</td>
<td class="text-center">
<span class="text-muted" >
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">인공지능 해커톤</th>
<td>
<div>[참여팀명] + 대회의 간략한 개요 + 서비스의 개요 </div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
<div class="profile">
<img src="/assets/img/user1.jpg" alt="">
<img src="/assets/img/user2.jpg" alt="">
<img src="/assets/img/user3.jpg" alt="">
<img src="/assets/img/user4.jpg" alt="">
<img src="/assets/img/user5.jpg" alt="">
</div>
</td>
<td class="fonsiz-md letsp-sm fonwei-kr-md text-center color-basic-opac">대상</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
<tr>
<th class="table-title" scope="col">스타트업 데모데이</th>
<td>
<div>[참여팀명] + 대회의 간략한 개요 + 서비스의 개요 </div>
<div>
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드 #검색연관키워드 #검색연관키워드
#검색연관키워드
</div>
<div>
<span class="badge bg-grey">React</span>
<span class="badge bg-grey">Redux</span>
<span class="badge bg-grey">JavaScript ES6</span>
<span class="badge bg-grey">HTML5 and CSS3</span>
<span class="badge bg-grey">Bootstrap 4</span>
<span class="badge bg-grey">Node.js</span>
<span class="badge bg-grey">Koa</span>
<span class="badge bg-grey">MongoDB</span>
<span class="badge bg-grey">AWS EC2</span>
</div>
<div class="profile">
<img src="/assets/img/user1.jpg" alt="">
<img src="/assets/img/user2.jpg" alt="">
<img src="/assets/img/user3.jpg" alt="">
<img src="/assets/img/user4.jpg" alt="">
<img src="/assets/img/user5.jpg" alt="">
</div>
</td>
<td class="fonsiz-md letsp-sm fonwei-kr-md text-center color-basic-opac">우수상</td>
<td class="text-center">
<span class="text-muted">
<i class="bi bi-file-earmark-slides"></i>
</span>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table-desc fonsiz-xs fonwei-kr-sm letsp-sm text-center color-basic-opac">대회 참여 및 수상 실적은 최근 순으로 정렬되어 있습니다</div>
</div>
</div>
</section>
<section class="container pt mt mb-5" id="stacks">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Stacks</h2>
<div class="section-desc fonsiz-sm color-basic-opac letsp-sm ws-xs mt-2 mb-4">
만들고자 하는 목표에 대해 필요한 기술들을 빠르게 습득하고 구현합니다.
할 수 있는 경계선을 더 넓혀 나가고자 합니다.
</div>
<div class="card shadow">
<div class="card-body">
<div class="table-responsive">
<table class="table table-hover align-middle">
<thead>
<tr class="fonsiz-sm fonwei-kr-md letsp-sm color-basic-opac text-center vertmid">
<th>기술 구분</th>
<th>로고</th>
<th>활용 수준</th>
<th>평가</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="col" class="table-title letsp-md">JavaScript</th>
<td>
<a href="https://ko.wikipedia.org/wiki/%EC%9E%90%EB%B0%94%EC%8A%A4%ED%81%AC%EB%A6%BD%ED%8A%B8" target="_blank">
<img src="/assets/img/js.png" alt="JavaScript Logo" />
</a>
</td>
<td>
<span class="ls-0">JavaScript, ECMAScript, Webpack</span> 과 Babel등을 위주로 개발하며 모듈화를 통한 플러그인 개발 및 <span class="ls-0">SDK</span>도 가능합니다.<br/>
브라우저 환경의 <span class="ls-0">JavaScript</span>의 경우 브라우저 호환성을 중요시하여 IE 환경에서도 정상 작동하도록 개발하고 있으며
최신 문법인 <span class="ls-0">ES6</span> 또한 자유자재로 사용하고 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">Node.js</th>
<td>
<a href="https://ko.wikipedia.org/wiki/Node.js" target="_blank">
<img src="/assets/svg/nodejs.svg" alt="Node.js Logo" />
</a>
</td>
<td>
<span class="ls-0">Node.js</span>로 <span class="ls-0">Express, Koa</span>등 웹 개발 프레임워크를 구축할 수 있으며, <span class="ls-0">React</span>와 <span class="ls-0">MERN Stack</span> 방식으로 조합하여 개발할 수 있습니다<br/>
<span class="ls-0">Handlebars, Liquid</span>와 같은 <span class="ls-0">Template Engine</span>을 <span class="ls-0">View</span> 형태로 제공하여 구축하거나 서버 로깅 등을 할 수 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">React</th>
<td>
<a href="https://ko.wikipedia.org/wiki/%EB%A6%AC%EC%95%A1%ED%8A%B8_(%EC%9B%B9_%ED%94%84%EB%A0%88%EC%9E%84%EC%9B%8C%ED%81%AC)" target="_blank">
<img src="/assets/svg/react.svg" alt="React Logo" />
</a>
</td>
<td>
<span class="ls-0">Redux</span>와 <span class="ls-0">Slice</span>로 상태 관리를 하며 <span class="ls-0">Axios</span>를 주로 사용하여 <span class="ls-0">API</span> 요청을 구현합니다.<br/>
대부분의 필요한 웹 컴포넌트를 능숙하게 개발할 수 있습니다(<span class="ls-0"></span>CRUD, Formik, Yup 등..)
또한 <span class="ls-0">Node.js</span>로부터 <span class="ls-0">JWT</span>를 발급받아 사용자 인증을 구현할 수 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
<i class="bi bi-star"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">Express</th>
<td>
<a href="https://ko.wikipedia.org/wiki/Express.js" target="_blank">
<img src="/assets/svg/express.svg" alt="Express Logo" />
</a>
</td>
<td>
<span class="ls-0">RESTFul</span>구조로 <span class="ls-0">API</span>를 설계하고 개발할 수 있으며 <span class="ls-0">MongoDB</span> 및 <span class="ls-0">Mongoose</span>와 연동하여 <span class="ls-0">CRUD</span>를 제공할 수 있습니다<br/>
<span class="ls-0">Pino Logger</span>를 통해 서버 로깅을 하며 <span class="ls-0">express-session</span>과 <span class="ls-0">Cookie</span>를 통해 세션 형태로 사용자 인증을 구현할 수 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">Koa</th>
<td>
<a href="https://koajs.com/" target="_blank">
<img src="/assets/svg/koa.svg" alt="Koa Logo" />
</a>
</td>
<td>
마찬가지로 <span class="ls-0">RESTful </span>구조로 <span class="ls-0">API </span>개발하며, <span class="ls-0">MongoDB</span>와 <span class="ls-0">Mongoose</span>와 연동하여 사용하고 있습니다<br/>
<span class="ls-0">koa-logger</span>를 통해 서버 로깅을 하며 <span class="ls-0">JWT</span>와 <span class="ls-0">Cookie</span>를 통해 사용자 인증을 구현할 수 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">MongoDB</th>
<td>
<a href="https://ko.wikipedia.org/wiki/%EB%AA%BD%EA%B3%A0DB" target="_blank">
<img src="/assets/svg/mongodb.svg" alt="MongoDB Logo" />
</a>
</td>
<td>
관계형 데이터베이스를 설계하고 <span class="ls-0">Mongoose</span>를 사용하여 높은 생산성으로 <span class="ls-0">API</span>를 개발하고 있습니다<br/>
<span class="ls-0">Camel case</span>로 데이터 모델링 시 필드명을 정의하여 설계하며 데이터 <span class="ls-0">ID</span> 값은 <span class="ls-0">MongoDB </span>내장 값인 <span class="ls-0">_id</span>를 증감 시켜 사용하고 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-half"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">AWS EC2</th>
<td>
<a href="https://ko.wikipedia.org/wiki/%EC%95%84%EB%A7%88%EC%A1%B4_%EC%9D%BC%EB%9E%98%EC%8A%A4%ED%8B%B1_%EC%BB%B4%ED%93%A8%ED%8A%B8_%ED%81%B4%EB%9D%BC%EC%9A%B0%EB%93%9C" target="_blank">
<img src="/assets/img/ec2.png" alt="AWS EC2 Logo" />
</a>
</td>
<td>
<span class="ls-0">Node.js</span> 앱은 <span class="ls-0">Elasticbeanstalk</span>으로 <span class="ls-0">WordPress</span>는 <span class="ls-0">Ubuntu</span>를 통해 앱을 배포하고 있습니다.<br/>
<span class="ls-0">CloudWatch</span>를 통해 서버 로그를 분석하고, 환경 알림 설정을 통해 앱에 문제가 있을 시 메일을 받도록 설정합니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
<tr>
<th scope="col" class="table-title letsp-md">AWS S3</th>
<td>
<a href="https://ko.wikipedia.org/wiki/%EC%95%84%EB%A7%88%EC%A1%B4_S3" target="_blank">
<img src="/assets/img/s3.png" alt="AWS S3 Logo" />
</a>
</td>
<td>
이미지, 파일 등을 AWS에서 제공하는 <span class="ls-0">AWS S3</span> 라이브러리를 연동하여 사용하고 있습니다<br/>
파일을 업로드하고 퍼블릭 주소를 반환받아 문자열 형태로 데이터베이스에 보관하여 사용하고 있습니다
</td>
<td>
<div class="star-icon text-center">
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star-fill"></i>
<i class="bi bi-star"></i>
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="table-desc fonsiz-xs fonwei-kr-sm letsp-sm text-center color-basic-opac">객관화하기 어려운 관계로, 제가 이해하고 구현할 수 있는 수준을 작성했습니다.</div>
</div>
</div>
</section>
<section id="charts" class="container">
<div class="row">
<div class="col-sm-6 col-lg-3 d-flex align-items-stretch">
<div class="card mb-3">
<div class="pt-5 pb-4">
<canvas id="chart1"></canvas>
</div>
<div class="card-body">
<div>
<h4 class="card-title fonsiz-xl fonwei-en-xxl letsp-xxl text-upper text-center text-primary">Front End</h4>
</div>
<div class="card-text fonsiz-sm fonwei-kr-sm letsp-sm mb-3 mt-3 px-2"><span class="ls-0">JavaScript</span>를 가장 많이 사용해 왔으며 가장 자신 있는 언어입니다. 특히 <span class="ls-0">React</span>에 관심이 많습니다.</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3 d-flex align-items-stretch">
<div class="card mb-3">
<div class="pt-5 pb-4">
<canvas id="chart2"></canvas>
</div>
<div class="card-body">
<h4 class="card-title fonsiz-xl fonwei-en-xxl letsp-xxl text-upper text-center text-primary">Back end</h4>
<div class="card-text fonsiz-sm fonwei-kr-sm letsp-sm mb-3 mt-3 px-2"><span class="ls-0">Node.js</span>를 가장 많이 사용하며 <span class="ls-0">Express.js, Koa </span>등의 프레임워크를 활용하고 있습니다 <span class="ls-0">Deno</span>를 공부해보고 싶습니다.</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3 d-flex align-items-stretch">
<div class="card mb-3">
<div class="pt-5 pb-4">
<canvas id="chart3"></canvas>
</div>
<div class="card-body">
<h4 class="card-title fonsiz-xl fonwei-en-xxl letsp-xxl text-upper text-center text-primary">Data base</h4>
<div class="card-text fonsiz-sm fonwei-kr-sm letsp-sm mb-3 mt-3 px-2"><span class="ls-0">MongoDB</span>를 가장 좋아하며 <span class="ls-0">Mongoose</span>를 활용하고 있습니다. 물론 <span class="ls-0">MySQL</span>도 사용하는 중이며 <span class="ls-0">GraphQL</span>에 관심이 많습니다.</div>
</div>
</div>
</div>
<div class="col-sm-6 col-lg-3 d-flex align-items-stretch">
<div class="card mb-3">
<div class="pt-5 pb-4">
<canvas id="chart4"></canvas>
</div>
<div class="card-body">
<h4 class="card-title fonsiz-xl fonwei-en-xxl letsp-xxl text-upper text-center text-primary">Utilities</h4>
<div class="card-text fonsiz-sm fonwei-kr-sm letsp-sm mb-3 mt-3 px-2"><span class="ls-0">GraphQL, Asana, Trello, AdobeXd, GitHub, Redmine</span> 등 사용하고 있습니다. 더 많이 알수록 효율은 더 높아진다고
믿습니다.</div>
</div>
</div>
</div>
</div>
</section>
<section class="container pt mt" id="education">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Education</h2>
<div class="section-desc fonsiz-sm color-basic-opac letsp-sm ws-xs mt-2 mb-4">
오직 한길만 보고 성실하게, 열심히 노력해 왔습니다. 항상 최선을 다하고 더 높은 것을 추구합니다.
</div>
<div class="row">
<div class="col-sm-12 col-lg-4">
<div class="card mb-3">
<img src="/assets/img/profile.jpg" class="card-img-top" alt="Profile Picture" />
<div class="card-body p-4">
<h5 class="card-title fonsiz-xxl fonwei-kr-xl letsp-sm">포항공대 컴공과 석사</h5>
<p class="card-text fonsiz-sm fonwei-kr-sm color-basic-opac letsp-sm">
2021년 스탠포드 대학 가을 학기 컴퓨터 공학과 석사 과정
<span class="ls-0">Web, Game, Data Analysis, Machine Learning</span> 분야
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-lg-4">
<div class="card mb-3">
<img src="/assets/img/profile.jpg" class="card-img-top" alt="Profile Picture" />
<div class="card-body p-4">
<h5 class="card-title fonsiz-xxl fonwei-kr-xl letsp-sm">서울대 컴퓨터공학부</h5>
<p class="card-text fonsiz-sm fonwei-kr-sm color-basic-opac letsp-sm">
2021년 스탠포드 대학 가을 학기 컴퓨터 공학과 박사 과정
<span class="ls-0">Web, Game, Data Analysis, Machine Learning</span> 분야
</p>
</div>
</div>
</div>
<div class="col-sm-12 col-lg-4">
<div class="card mb-3">
<img src="/assets/img/profile.jpg" class="card-img-top" alt="Profile Picture" />
<div class="card-body p-4">
<h5 class="card-title fonsiz-xxl fonwei-kr-xl letsp-sm">경기고등학교 이과 </h5>
<p class="card-text fonsiz-sm fonwei-kr-sm color-basic-opac letsp-sm">
2021년 스탠포드 대학 가을 학기 컴퓨터 공학과 박사 과정
<span class="ls-0">Web, Game, Data Analysis, Machine Learning</span> 분야
</p>
</div>
</div>
</div>
</div>
</section>
<section class="container pt mt" id="document">
<div class="row">
<div class="col-lg-7 mx-auto text-center mb-5">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Document</h2>
<p class=" fonsiz-sm color-basic fonsiz-xl fonwei-kr-xs lh-md letsp-xs ws-sm my-4">
가장 중요한 자산은 태도라고 생각합니다. <span class="fonwei-kr-md">문제</span>를 대하는 태도, <span class="fonwei-kr-md">개발</span>을 대하는 태도,
<span class="fonwei-kr-md">팀원</span>을 대하는 태도가 <span class="fonwei-kr-md">오랜 시간</span>과 결합하면 엄청난 능력이 된다고 믿습니다.
그동안 노력해온 다양한 문서를 아래에서 보실 수 있습니다.
</p>
</div>
</div>
</section>
<section class="container">
<div class="row">
<div class="col-lg-8 mx-auto text-center">
<div class="owl-carousel owl-theme">
<div class="item">
<div style="width: 100%; height: 0px">
<img src="/assets/img/file6.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md"> 2,770 contributions in the last year (github)</span> </div>
</div>
<div class="item">
<div style="width: 100%; height: 0px">
<img src="/assets/img/file1.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md">2021</span> 특허 출원 중 : 오픈소스 기반 소프트웨어 프로세스 자동화 개선 방안<span class="letsp-md">.pdf</span> </div>
</div>
<div class="item">
<div style="width: 100%; height: 0px">
<img src="/assets/img/file2.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md">2017</span> 챠트 오픈 소스 개발기<span class="letsp-md">.pdf</span></div>
</div>
<div class="item">
<div style="width: 100%; height: 0px">
<img src="/assets/img/file3.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md">2017</span> 특허 등록 2종<span class="letsp-md">.pdf</span> </div>
</div>
<div class="item">
<div style="width: 100%; height: 0px">
<img src="/assets/img/file4.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md">2016</span> 창업 사업계획서 (개발 부분)<span class="letsp-md">.pdf</span></div>
</div>
<div class="item">
<div style="width: 100%; height: 395px">
<img src="/assets/img/file5.jpg" alt="">
</div>
<div class="fonsiz-sm fonwei-kr-sm letsp-sm color-basic-opac mt-3"><span class="letsp-md">2016</span> 웹서비스 모델 피치덱<span class="letsp-md">.pdf</span></div>
</div>
</div>
</div>
</div>
</section>
<section class="container pt mt" id="salary">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">Salary</h2>
<div class="section-desc fonsiz-sm color-basic-opac letsp-sm ws-xs mt-2 mb-4">
저의 기술과 열정으로 몇 배의 부가가치를 돌려 드리겠습니다.
탁월한 투자 대상이 되겠습니다.
</div>
<div class="row">
<div class="col-sm-4 mb-3">
<div class="card mb-4 shadow-sm text-center h-100">
<div class="card-header">
<h4 class="fonsiz-md fonwei-en-xxl text-upper color-purple-opac">
<span class="fonwei-en-md">Efficient</span> Freelancer Mode
</h4>
</div>
<div class="card-body">
<div class="price-title">
<h2 class="fonsiz-xxxl fonwei-en-xxl">
<span class="fonsiz-xl color-basic-opac">₩</span>
±27M
<span class="fonsiz-xl color-basic-opac">/Day</span>
</h2>
</div>
<hr>
<ul class="list-unstyled fonsiz-md fonwei-kr-sm letsp-sm lihe-sm">
<li>8시간 / 1 Day <span class="text-success"> ✓</span> </li>
<li>주말, 공휴일 지원 <span class="text-success"> ✓</span> </li>
<li>야간, 철야 지원 <span class="text-success"> ✓</span></li>
<li>프론트엔드 개발 <span class="text-success"> ✓</span> </li>
<li>백엔드 개발 <span class="text-success"> ✓</span> </li>
<li>다소 기획 참여 <span class="text-success"> ✓</span> </li>
<li>화상 회의 지원 <span class="text-success"> ✓</span> </li>
</ul>
</div>
</div>
</div>
<div class="col-sm-4 mb-3">
<div class="card mb-4 shadow-sm text-center h-100">
<div class="card-header">
<h4 class="fonsiz-md fonwei-en-xxl text-upper color-purple-opac">
<span class="fonwei-en-md">Normal</span> Developer Mode
</h4>
</div>
<div class="card-body">
<div class="price-title">
<h2 class="fonsiz-xxxl fonwei-en-xxl">
<span class="fonsiz-xl color-basic-opac">₩</span>
±417M
<span class="fonsiz-xl color-basic-opac">/Mo</span>
</h2>
</div>
<hr>
<ul class="list-unstyled fonsiz-md fonwei-kr-sm letsp-sm lihe-sm">
<li>법정 근무 8시간 준수 / 1 Day <span class="text-success"> ✓</span> </li>
<li>주말, 공휴일 근무 <span class="text-danger"> ×</span></li>
<li>야간, 철야 근무 <span class="text-danger"> ×</span></li>
<li>합리적인 프론트엔드 개발 <span class="text-success"> ✓</span></li>
<li>정상적인 백엔드 개발 <span class="text-success"> ✓</span></li>
<li>난 개발자인데 기획 ? <span class="text-danger"> ×</span></li>
<li>상식적인 회의 지원 <span class="text-success"> ✓</span> </li>
</ul>
<div class="ribbon ribbon-bottom-right"><span class="noto500">합리적인 제안</span></div>
</div>
</div>
</div>
<div class="col-sm-4 mb-3">
<div class="card mb-4 shadow-sm text-center h-100">
<div class="card-header">
<h4 class="fonsiz-md fonwei-en-xxl text-upper color-purple-opac">
<span class="fonwei-en-md"> Overwhelming</span> Beast Mode
</h4>
</div>
<div class="card-body">
<div class="price-title">
<h2 class="fonsiz-xxxl fonwei-en-xxl">
<span class="fonsiz-xl color-basic-opac">₩</span>
±541M
<span class="fonsiz-xl color-basic-opac">/Mo</span>
</h2>
</div>
<hr>
<ul class="list-unstyled fonsiz-md fonwei-kr-sm letsp-sm lihe-sm">
<li>법이 뭔데 ? 무조건 8시간 이상 / 1 Day <span class="text-success"> ✓</span> </li>
<li>흥분되는 주말, 공휴일 근무 <span class="text-success"> ✓</span></li>
<li>설레는 야간, 철야 근무 <span class="text-success"> ✓</span></li>
<li>행복한 프론트엔드 개발 <span class="text-success"> ✓</span></li>
<li>짜릿한 백엔드 개발 <span class="text-success"> ✓</span></li>
<li>미칠듯이 기획 참여 <span class="text-success"> ✓</span></li>
<li>미칠듯이 회의 지원 <span class="text-success"> ✓</span></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- contact 시작 -->
<section class="container pt mt" id="contact">
<div class="row">
<div class="col-lg-7 mx-auto text-center mb-5">
<h2 class="section-header fonsiz-xxxl fonwei-en-xxl letsp-sm text-upper color-basic">
Contact
</h2>