-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
50 lines (50 loc) · 2.27 KB
/
404.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
<!DOCTYPE html>
<html lang="kr">
<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">
<title>404 Not Found</title>
<style>
@import url('https://cdn.jsdelivr.net/gh/orioncactus/pretendard/dist/web/static/pretendard.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+KR:wght@200&display=swap');
*{
font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif !important;
/* word-break: keep-all; */
}
html, body{
font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif !important;
margin: 0;
padding: 0;
text-align: center;
color: #333333;
}
.box{
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
h3{
margin: 0;
margin-bottom: 10px;
}
p{
margin: 0;
margin-bottom: 6px;
}
</style>
</head>
<body>
<div class="box" style="height: 100vh; padding: 0 20px 0 20px;">
<h1>404 Not Found</h1>
<h3>The page you requested could not be found.</h3>
<h3>요청하신 페이지를 찾을 수 없어요.</h3>
<h3>リクエストされたページが見つかりません。</h3>
<br>
<p>Please check the URL again and reconnect, or click <a href="/" style="color: #333333;">here</a> to go to the main page.</p>
<p>URL을 다시 확인하고 재접속하시거나, <a href="/" style="color: #333333;">여기</a>를 눌러 메인페이지로 이동해 주세요.</p>
<p>URLをもう一度確認して再接続するか、<a href="/" style="color: #333333;">ここ</a>をクリックしてメインページに移動してください。</p>
</div>
</body>
</html>