-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (54 loc) · 1.78 KB
/
Copy pathindex.html
File metadata and controls
57 lines (54 loc) · 1.78 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
<!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">
<meta name="description" content="이 페이지는 자기소개 페이지 입니다">
<meta name="keywords" content="자기소개, 개발자자기소개, 포트폴리오">
<meta name="author" content="yejin lee">
<title>자기소개 페이지</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<div class="wrapper">
<header>
<div class="mac-btn">
<ul class="mac-btn-list">
<li class="mac-btn-item red"></li>
<li class="mac-btn-item yellow"></li>
<li class="mac-btn-item green"></li>
</ul>
</div>
<div class="gnb-wrapper">
<nav>
<ul class="gnb-list">
<!-- 1. li.gnb-item*3>a -->
<!-- 2. li.gnb-item>a*3 -->
<li class="gnb-item"><a href="">HOME</a></li>
<li class="gnb-item"><a href="">ABOUT</a></li>
<li class="gnb-item "><a href="">PROJECT</a></li>
</ul>
</nav>
</div>
</header>
<section>
<div class="info-section">
<h1 class="my-name">안녕 나는 이예진이야</h1>
<a href="./images/potato.jpg" download>
<img src="./images/potato.jpg" alt="프로필 사진">
</a>
</div>
</section>
<footer>
<div class="contact-list">
<h3>CONTACT</h3>
<!-- p.contact-item*3>a -->
<p class="contact-item"><a href="mailto:ingkejin@gmail.com">MAIL</a></p>
<p class="contact-item"><a href="tel:020-1234-7586">TEL</a></p>
<p class="contact-item"><a href="https://google.com">WEB</a></p>
</div>
</footer>
</div>
</body>
</html>