-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
61 lines (58 loc) · 2.62 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
<!DOCTYPE html>
<html lang="kr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="index.css">
<!-- 아래 "프로젝트 이름"을 자기 자신의 이름으로 변경 -->
<title>자기소개 페이지</title>
</head>
<body>
<section class="wrap">
<article class="profile">
<img class="image" src="/images/Alan.jpeg"/>
<h1 class="name">alan.lee (이성현)</h1>
<p class = "description">🎂2000.03.08 (만 24세)</p>
<p class = "description">🏫세종대학교 컴퓨터공학과 / 경제학과</p>
<p class= "description">✅IT기업 / 금융권 개발자를 희망하는 취준생</p>
</article>
<hr class = "horizontal-rule"/><br>
<article class="external">
<a id="phone" class="link" href="tel:01050195864">
<img src="/images/logo/telephone.svg"/>
</a>
<a id="email" class="link" href="mailto:[email protected]">
<img src="/images/logo/email.svg"/>
</a>
<a id="instagram" class="link" href="https://www.instagram.com/shworld_0308" target="_blank">
<img src="/images/logo/instagram.svg"/>
</a>
<a id="youtube" class="link" href="https://youtube.co.kr" target="_blank">
<img src="/images/logo/youtube.svg"/>
</a>
<a id="naver" class="link" href="https://blog.naver.com/alan0308" target="_blank">
<img src="/images/logo/naverblog.svg"/>
</a>
</article>
<article class="buttons">
<a class="button" href="https://github.com/bluegown" target="_blank">Github Page</a>
<a class="button" href="https://alan0308.tistory.com/" target="_blank">Tistory Blog</a>
</article>
<article class = "text">
<!-- p태그는 문단의 약자 */ -->
<p>다짐</p>
<p class = "small">매 순간 열심히 살고 후회하지 않을 시기를 만들겠습니다</p>
</article>
<article class = "photo">
<p class = "photos">My photo</p>
<img src="/images/IMG_3621.JPG"/>
<img src="/images/IMG_7574.JPG"/>
</article>
<article class = "youtube"> <!--ZOkpTNdnCQ0?si=8DQG8pBRKaGYflpd-->
<p class = "explain">Youtube</p>
<iframe src = "https://www.youtube.com/embed/ZOkpTNdnCQ0?si=8DQG8pBRKaGYflpd?controls=0" title ="Youtube Video Player"
frameborder = "0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
</article>
</section>
</body>
</html>