-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
70 lines (70 loc) · 2.2 KB
/
404.html
File metadata and controls
70 lines (70 loc) · 2.2 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>404 — 페이지를 찾을 수 없습니다</title>
<link rel="icon" href="/Logo Image/ToyoTech_Logo_forTab.png" />
<link rel="stylesheet" href="/background.css" />
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #17172c;
color: #eee;
font-family: "Segoe UI", Tahoma, sans-serif;
}
.container {
text-align: center;
max-width: 90%;
z-index: 1;
}
h1 {
font-size: 8rem;
margin: 0;
color: #d1b3ff;
}
p {
font-size: 1.5rem;
margin: 1rem 0;
}
a.btn-home {
display: inline-block;
padding: 12px 24px;
background-color: #d1b3ff;
color: #fff;
text-decoration: none;
border-radius: 6px;
font-size: 1.1rem;
transition: background-color 0.3s;
}
a.btn-home:hover {
background-color: #b49bff;
}
.subtext {
margin-top: 1rem;
font-size: 0.9rem;
color: #ccc;
}
</style>
</head>
<body>
<div class="container">
<h1>404</h1>
<p>요청하신 페이지를 찾을 수 없습니다.</p>
<a href="/" class="btn-home">Home</a>
<p class="subtext">
도움이 필요하시면
<a href="mailto:toyotech@toyotech.dev" style="color: #d1b3ff"
>문의하기</a
>를 이용해 주세요.
</p>
</div>
<div id="particles-js"></div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="/background.js"></script>
</body>
</html>