-
Notifications
You must be signed in to change notification settings - Fork 0
/
이민수.html
40 lines (39 loc) · 1.16 KB
/
이민수.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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>나만의 자기소개 페이지</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<header>
<h1>이민수</h1>
<p>내 파트를 여기에 적어주세요!</p>
</header>
<section id="about">
<h2>소개</h2>
<p>안녕하세요! 여기에 자기소개를 써주세요!</p>
</section>
<section id="interests">
<h2>관심사</h2>
<ul>
<li>관심사1</li>
<li>관심사2</li>
<li>관심사3</li>
</ul>
</section>
<section id="education">
<h2>학과</h2>
<p>학과를 적어주세요!</p>
</section>
<section id="contact">
<h2>연락처</h2>
<p>Email: [email protected]</p>
<p>GitHub: github.com/example</p>
<p>Instagram: @example</p>
</section>
</div>
</body>
</html>