-
Notifications
You must be signed in to change notification settings - Fork 0
/
sample.html
39 lines (39 loc) · 1.37 KB
/
sample.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
<!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>안녕하세요! 개발을 매우 즐겨하는 정보통신공학과 3학년 이수혁입니다. 새로운 기술을 배우고 창의적인 프로젝트를 만드는 것에 큰 흥미를 느낍니다. 궁금한게 있으면 언제든지 물어봐주세요!</p>
</section>
<section id="interests">
<h2>관심사</h2>
<ul>
<li>프론트, 백엔드 웹 개발</li>
<li>뒹굴거리기</li>
<li>아기사자들 :)</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/leestana01</p>
<p>Instagram: @leesuhyeok01</p>
</section>
</div>
</body>
</html>