-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
77 lines (70 loc) · 2.42 KB
/
Copy path404.html
File metadata and controls
77 lines (70 loc) · 2.42 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - 페이지를 찾을 수 없습니다 | KPN</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg">
<link rel="stylesheet" href="assets/style.css">
</head>
<body>
<!-- 네비게이션 -->
<nav>
<div class="container">
<div class="logo">KPN</div>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="knowledge.html">Knowledge</a></li>
<li><a href="scenario.html">Scenarios</a></li>
<li><a href="simulation.html">Simulation</a></li>
<li><a href="community.html">Community</a></li>
<li><a href="join.html">Join</a></li>
<li><a href="about.html">About</a></li>
</ul>
</div>
</nav>
<!-- 메인 컨텐츠 -->
<main>
<section class="hero">
<div class="container" style="text-align: center;">
<h1 style="font-size: 6rem; margin-bottom: 0.5rem;">404</h1>
<h2>페이지를 찾을 수 없습니다</h2>
<p style="margin-top: 1.5rem; margin-bottom: 2rem;">
요청하신 페이지가 존재하지 않거나 이동되었을 수 있습니다.<br>
주소를 다시 확인해주세요.
</p>
<a href="index.html" class="btn">홈으로 돌아가기</a>
</div>
</section>
<section>
<div class="container">
<h2 style="text-align: center;">추천 페이지</h2>
<div class="grid grid-3">
<div class="card">
<h3>생존 지식</h3>
<p>재난 상황에 필요한 핵심 지식을 확인하세요.</p>
<a href="knowledge.html" class="btn">지식 탐색</a>
</div>
<div class="card">
<h3>재난 시나리오</h3>
<p>각 재난별 대응 방법을 알아보세요.</p>
<a href="scenario.html" class="btn">시나리오 보기</a>
</div>
<div class="card">
<h3>참여하기</h3>
<p>KPN 커뮤니티에 참여하세요.</p>
<a href="join.html" class="btn">참여 신청</a>
</div>
</div>
</div>
</section>
</main>
<!-- 푸터 -->
<footer>
<div class="container">
<p>© 2025 Korea Preppers Network. 질서 속의 긴장, 단순함 속의 지성.</p>
</div>
</footer>
<script src="assets/script.js"></script>
</body>
</html>