forked from jjlaon/resume
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
83 lines (80 loc) · 2.69 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
<DOCTYPE html>
<html lang="ko">
<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">
<title>FUNNYCOM</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div id="container">
<header>
<!-- 이름을 가장 위쪽에 -->
<h1>Kyunghee Ko</h1>
<h2>Frontend Developer & Web Designer</h2>
</header>
<!-- 내용 -->
<main>
<!-- 화면을 좌우로 나눔 -->
<article id="left">
<div id="pf-img">
<img src="./pf.png" alt="프로필 이미지">
</div>
<!-- 자기 소개 -->
<section>
<!-- 소개 내용은 <p>와 </p> 사이의 부분을 수정하세요 -->
<p>제주의 한 시골 마을에서 열심히 책을 짓고 있습니다.</p>
<!-- sns 링크 부분 -->
<!-- href="" 부분의 링크와 내용을 수정하세요 -->
<ul id="sns">
<li>
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:[email protected]">[email protected]</a>
</li>
<li>
<i class="fab fa-github" aria-hidden="true"></i>
<a href="github.com/jjlaon">jjlaon</a>
</li>
<li>
<i class="fab fa-linkedin" aria-hidden="true"></i>
<a href="linkedin.com/funnyom">funnycom</a>
</li>
</ul>
</section>
</article>
<artile id="right">
<section>
<h2>경력(work)</h2>
<!-- 경력 내용 수정 -->
<dl>
<dt>회사 A : 2018 ~ 2020</dt>
<dd>회사에서 맡았던 업무</dd>
<dd>기타 사항</dd>
</dl>
<dl>
<dt>회사 B : 2020 ~ 2022</dt>
<dd>회사에서 맡았던 업무</dd>
</dl>
</section>
<section>
<h2>다룰 수 있는 기술(skills)</h2>
<!-- 자신있는 기술 수정 -->
<p>HTML/CSS</p>
<p>Javascritpt</p>
<p>React</p>
<p>Github</p>
</section>
<section>
<h2>학력(education)</h2>
<!-- 학력 수정 -->
<p>2018.02 - XX 대학교 졸업(전공: 컴퓨터공학)</p>
<p>2012.02 - XX 고등학교 졸업</p>
<p> ... </p>
</section>
</artile>
</main>
</div>
</body>
</html>