-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
192 lines (183 loc) · 5.33 KB
/
index.html
File metadata and controls
192 lines (183 loc) · 5.33 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Resume</title>
<link href="image/favicon.ico" rel="icon">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css">
<!-- <link rel="stylesheet" href="css/main.css"> -->
<style>
body {
margin: 0;
font-family: 'Pretendard', sans-serif;
line-height: 1.6;
background-color: #f9fafb;
color: #333;
}
.container {
display: flex;
max-width: 1200px;
margin: 0 auto;
padding: 20px;
}
.content {
flex: 1;
padding: 20px;
}
nav {
position: sticky;
top: 20px;
flex: 0 0 200px;
margin-left: 20px;
padding: 20px;
background-color: #ffffff;
border: 1px solid #ecf0f1;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
height: fit-content;
}
nav ul {
list-style: none;
padding: 0;
margin: 0;
}
nav ul li {
margin-bottom: 10px;
}
nav ul li a {
text-decoration: none;
color: #34495e;
font-size: 1rem;
padding: 5px;
display: block;
}
nav ul li a.active {
background-color: #3498db;
color: #ffffff;
border-radius: 5px;
}
section {
margin-bottom: 50px;
padding: 20px;
background: #ffffff;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
h2 {
font-size: 1.8rem;
color: #34495e;
margin-bottom: 15px;
border-bottom: 2px solid #ecf0f1;
padding-bottom: 5px;
}
footer {
text-align: center;
margin-top: 40px;
}
a {
color: #3498db;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
nav {
margin: 0 auto;
width: 100%;
}
}
</style>
</head>
<body>
<div class="container">
<!-- 본문 내용 -->
<div class="content">
<header>
<h1>안녕하세요, 저는 오재헌입니다<span class="period-mark">.</span></h1>
<p>개발자로서의 꿈을 키워나가기 위해서 노력하고 있습니다. 잘 부탁드립니다.</p>
</header>
<section id="experience">
<h2>Experience</h2>
<div>
<h3>아이티스쿨<br>정보보호교육원</h3>
<p class="role">Backend Engineer</p>
<p>2023.06 ~ 2024.12</p>
<ul>
<li>HTML, CSS, JavaScript 등 프론트엔드 구현</li>
<li>Java, Spring을 활용한 백엔드 구현</li>
<li>AWS의 EC2 서버를 활용한 배포 경험</li>
</ul>
<p><strong>Tech Stack:</strong> Java, Spring, MyBatis, HTML, CSS, JavaScript, AWS</p>
</div>
<div>
<h3>테크노프로디자인</h3>
<p class="role">Semiconductor Engineer</p>
<p>2019.07 ~ 2022.03</p>
<ul>
<li>cadence Tool을 사용하여 설계</li>
<li>PowerSi, PowerDC를 사용하여 설계 검증</li>
<li>HFSS 활용하여 3D 모델 검증</li>
</ul>
<p><strong>Tech Stack:</strong> PowerSI, PowerDC, HFSS</p>
</div>
</section>
<section id="education">
<h2>Education</h2>
<h3>대전대학교</h3>
<p>전자정보통신공학과 (2013.03 ~ 2019.02)</p>
<p>컴퓨터구조, 자료구조, 프로그래밍 등의 과목을 이수하였습니다.</p>
</section>
<section id="skills">
<h2>Skills</h2>
<ul>
<li>Java, Spring, MyBatis (중)</li>
<li>HTML, CSS, JavaScript (하)</li>
<li>AWS (EC2, S3) (하)</li>
</ul>
</section>
<footer id="contact">
<h2>Contact</h2>
<ul>
<li><a href="mailto:mykd2012@gmail.com">이메일</a></li>
<li><a href="https://naver.com">블로그</a></li>
<li><a href="https://naver.com">깃허브</a></li>
</ul>
</footer>
</div>
<!-- 네비게이션 바 -->
<nav>
<ul>
<li><a href="#experience" class="nav-link">Experience</a></li>
<li><a href="#education" class="nav-link">Education</a></li>
<li><a href="#skills" class="nav-link">Skills</a></li>
<li><a href="#contact" class="nav-link">Contact</a></li>
</ul>
</nav>
</div>
<script>
// 스크롤 시 섹션 감지 및 메뉴 강조
const sections = document.querySelectorAll('section');
const navLinks = document.querySelectorAll('.nav-link');
window.addEventListener('scroll', () => {
let current = '';
sections.forEach(section => {
const sectionTop = section.offsetTop;
if (pageYOffset >= sectionTop - 50) {
current = section.getAttribute('id');
}
});
navLinks.forEach(link => {
link.classList.remove('active');
if (link.getAttribute('href').includes(current)) {
link.classList.add('active');
}
});
});
</script>
</body>
</html>