-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
134 lines (122 loc) · 3.5 KB
/
index.html
File metadata and controls
134 lines (122 loc) · 3.5 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
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
<!DOCTYPE html>
<html>
<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 property="og:title" content="명백 - 프로필 링크" />
<meta property="og:description" content="코딩 좋아합니다" />
<meta property="og:image" content="조랭이.jpg" />
<title>명백 - 프로필 링크</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
* {
font-family:
"Pretendard",
serif;
}
body {
background-color:
#111111;
}
.profile {
width:
150px;
height:
150px;
border-radius:
100%;
border:
3px solid rgb(223,
223,
223);
background-image:
url('조랭이.jpg');
background-position:
center;
background-size:
150%;
}
.main {
color:
white;
font-size:
30px;
margin-top:
30px;
margin-bottom:
10px;
}
.sub {
color:
white;
font-size:
20px;
margin-top:
0px;
margin-bottom:
50px;
}
.wrap {
width:
300px;
margin:
30px auto 0px auto;
display:
flex;
flex-direction:
column;
justify-content:
center;
align-items:
center;
}
.wrap>a {
width:
300px;
height:
60px;
background-color:
white;
border-radius:
8px;
margin-bottom:
10px;
font-size:
20px;
font-weight:
bold;
color: #000000;
display:
flex;
flex-direction:
column;
justify-content:
center;
align-items:
center;
text-decoration:
none;
box-shadow:
3px 3px 5px 0px black;
}
.wrap>a:hover {
background-color:
#f2f2f2;
}
</style>
</head>
<body>
<div class="wrap">
<div class="profile"></div>
<h1 class="main">명백</h1>
<p class="sub">코딩을 좋아해요</p>
<a target="_blank" href="https://github.com/myeongbaek">깃허브</a>
<a target="_blank" href="https://www.instagram.com/mummu._.myb/">인스타그램</a>
<a target="_blank" href="https://www.instagram.com/choi_myb/">클라이밍</a>
<a target="_blank" href="https://velog.io/@myeongbaek">벨로그</a>
</div>
</body>
</html>