-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path404.html
44 lines (41 loc) · 2 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
<!doctype html>
<html lang="ko">
<head>
<meta charset="utf-8">
<title>페이지를 표시할 수 없습니다</title>
<meta name="viewport" content="width=device-width,initial-scale=1">
<meta name="author" content="Lee Minseo">
<meta property="og:title" content="페이지를 표시할 수 없습니다">
<meta property="og:site_name" content="HBIOS-SYS">
<meta property="og:type" content="website">
<meta property="og:url" content="https://hbios.quiple.dev">
<meta property="og:image" content="https://hbios.quiple.dev/files/cover.png">
<meta property="og:image:type" content="image/png">
<meta property="og:locale" content="ko_KR">
<!--link rel="icon" type="image/svg+xml" href="./files/galmuri.svg"-->
<link rel="canonical" href="https://hbios.quiple.dev">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/normalize.css/normalize.min.css">
<link rel="stylesheet" href="./files/style.css">
<style>
* { filter: none; }
::selection { background-color: #fff; color: #00a; }
html, body { background-color: #00a; }
h1 { padding: 0 8px; margin: 0; }
.wrap { max-width: 640px; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; color: #fff; gap: 16px; padding: 40px; margin: 0 auto; }
.wrap h1 { color: #00a; background-color: #fff; }
p, li { margin: 0; }
</style>
</head>
<body>
<div class="wrap">
<h1>페이지를 표시할 수 없습니다</h1>
<p>찾고 있는 페이지는 현재 사용할 수 없습니다. 웹 사이트에 기술적인 문제가 있거나 브라우저의 설정을 변경해야 합니다.</p>
<ul>
<li>새로 고침 단추를 누르거나 나중에 다시 시도하십시오.</li>
<li>페이지 주소를 주소 표시줄에 입력한 경우 해당 주소를 올바르게 입력했는지 확인하십시오.</li>
<li>다른 링크로 이동하려면 뒤로 단추를 누르십시오.</li>
</ul>
<p>심심하면 아무 키나 누르십시오.</p>
</div>
</body>
</html>