-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
180 lines (179 loc) · 6.75 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- SEO -->
<title>Junsung's Portfolio</title>
<meta
name="description"
content="Portfolio for Junsung"
/>
<meta name="author" content="Junsung" />
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon" />
<!-- OG (Open Graph Data) -->
<meta property="og:title" content="준성의 포트폴리오" />
<meta property="og:type" content="website" />
<meta property="og:url" content="https://pantom0717.github.io/" />
<meta property="og:image" content="https://pantom0717.github.io/images/og.web" />
<!-- Google Fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600&display=swap"
rel="stylesheet"
/>
<!-- Font Awesome -->
<script src="https://kit.fontawesome.com/550497833c.js" crossorigin="anonymous"></script>
<!-- CSS -->
<link rel="stylesheet" href="css/style.css" />
<!-- Javascript -->
<script src="src/main.js" defer></script>
</head>
<body>
<!-- Header -->
<header class="header">
<div class="header__logo">
<img class="header__logo__img" src="images/favicon.ico" alt="logo" />
<h1 class="header__logo__title"><a href="#">Jun</a></h1>
</div>
<nav>
<ul class="header__menu">
<li><a class="header__menu__item active" href="#home">Home</a></li>
<li><a class="header__menu__item" href="#about">About</a></li>
<li><a class="header__menu__item" href="#skills">Skills</a></li>
<li><a class="header__menu__item" href="#work">My work</a></li>
<li><a class="header__menu__item" href="#contact">Contact</a></li>
</ul>
</nav>
<button class="header__toggle" aria-label="navigation menu toggle">
<i class="fa-solid fa-bars"></i>
</button>
</header>
<!-- Main -->
<main>
<!-- Home -->
<section id="home">
<div class="home__container">
<img class="home__avatar " src="images/profile.jpg" alt="Jun's profile" />
<h2 class="home__title">Hello</h2>
<p class="home__description">Blockchain Valley Development member</p>
<a class="home__contact" href="#contact">Contact Me</a>
</div>
</section>
<!-- About -->
<section id="about" class="section max-container" >
<h2 class = "title">About me</h2>
<p class="description">Developer</p>
<ul class="majors">
<li class="major">
<i class="fa-brands fa-html5 major__icon"></i>
<p class="major__title">Front-end</p>
<p>HTML, CSS, Javascript</p>
</li>
<li class="major">
<i class="fa-solid fa-robot major__icon"></i>
<p class="major__title">A.I</p>
<p>Python, tensorflow, pytorch, OpenCV</p>
</li>
</ul>
<ul class="jobs">
<li class="job">
<img class="job_image" src="images/jobs/korea.png" alt="korea logo" />
<div>
<p class="job__name">Department of Electrical and Electronic Engineering, Korea University</p>
<p class="job__period">2018 Fev - Until now</p>
</div>
</li>
<li class="job">
<img class="job_image" src="images/jobs/buliding.png" alt="buliding logo" />
<div>
<p class="job__name">Blockchain Valley Development Team Member</p>
<p class="job__period">2023 Oct - Until now</p>
</div>
</li>
</ul>
</section>
<!-- Skills -->
<section id="skills" class="section">
<div class="max-container">
<h2 class="title">My Skills</h2>
<div class="skills">
<section class="skills__coding">
<h3 class="skills__title ">Coding Skills</h3>
<ul>
<li class="bar">
<div class="bar__metadata"><span>HTML</span><span>90%</span></div>
<div class="bar__bg"><div class="bar__value" style="width: 90%"></div></div>
</li>
<li class="bar">
<div class="bar__metadata"><span>CSS</span><span>80%</span></div>
<div class="bar__bg"><div class="bar__value" style="width: 80%"></div></div>
</li>
<li class="bar">
<div class="bar__metadata"><span>Javascript</span><span>75%</span></div>
<div class="bar__bg"><div class="bar__value" style="width: 75%"></div></div>
</li>
<li class="bar">
<div class="bar__metadata"><span>Python</span><span>90%</span></div>
<div class="bar__bg"><div class="bar__value" style="width: 90%"></div></div>
</li>
</ul>
</section>
<section class="skills__tools">
<h3 class="skills__title ">Tools</h3>
<ul>
<li>Visual Studio Code</li>
<li>Figma</li>
<li>Modelsim</li>
</ul>
</section>
<section class="skills__etc">
<h3 class="skills__title ">Etc</h3>
<ul>
<li>ROS</li>
<li>my SQL</li>
<li>Verliog</li>
</ul>
</section>
</div>
</div>
</section>
<!-- Work -->
<section id="work" class="section">
<h2 class="title">My work</h2>
<ul class="projects">
<li class="project">
<a href="https://koreascience.kr/article/CFKO202133649145998.pdf" target="_blank">
<img src="images/projects/Hamium.png" alt="project1" class="project__img" />
<div class="project__metadata">
<h3 class="project__title">Self-driving Temperature Measurement Robot, Based on Reinforcement Learning.</h3>
<p>Hanium_contest (21.2 ~ 11)</p>
</div>
</a>
</li>
</ul>
</section>
</main>
<!-- Footer -->
<footer id="contact" class="section">
<div class="max">
<h2 class="title">Coffee Chat</h2>
<p class="description">[email protected]</p>
<ul class="contact__links">
<li>
<a class="contact__link"
href="https://github.com/pantom0717"
target="_blank"
title="my github link"
>
<i class="fa-brands fa-github"></i>
</a>
</li>
</ul>
<p>ⓒJun - All rights reserved</p>
</div>
</footer>
</body>
</html>