-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.48 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
<!DOCTYPE html>
<html lang="kr"></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 content="밝은 공을 세우다, 명훈" property="og:title">
<meta content="https//myeonghoonis.monster/" property="og:url">
<meta content="저는 세상 편안한 서비스를 제공하려고 최선을 다 하는 웹 풀스택 개발자입니다." property="og:description">
<meta content="https//myeonghoonis.monster/assets/profile.JPG" property="og:image">
<title>밝은 공을 세우다, 명훈</title>
<style>
body {
margin: 0;
display: flex;
justify-content: center;
align-items: center;
background-color: #363636;
width: 100vw;
height: 100vh;
}
#box {
display: flex;
flex-direction: column;
gap: 30px;
align-items: center;
}
.title {
text-align: center;
color: white;
font-size: 25px;
font-weight: 600;
}
.explain {
color: #C7C7C7;
font-size: 14px;
font-weight: 400;
}
</style>
</head>
<body>
<div id="box">
<div class="title">포트폴리오 사이트 리모델링 중..</div>
<div class="explain">공사 중 이오니 잠시 후 레거시버전으로 이동합니다.</div>
</div>
<script>
window.onload = () => {
setTimeout(() => {
location.replace('/legacy');
}, 3000);
}
</script>
</body>
</html>