-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
44 lines (44 loc) · 1.54 KB
/
404.html
File metadata and controls
44 lines (44 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en"
<head>
<link rel="icon" href="/asset/logo.png" type="image/png">
<link rel="stylesheet" href="/style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="dark light">
<!-- HTML Meta Tags -->
<title>404! - Oh No!</title>
<meta name="description" content="404">
</head>
<body>
<header class="header">
<img onclick="document.getElementById('sidebar').classList.toggle('open');" src="/asset/logo.png" alt="DED Logo">
<h3>DubEnderDragon Pages</h3>
</header>
<div class="sidebar" id="sidebar">
Main
<a class="dialogue_link" href="/">Introduction</a>
Project
<a class="dialogue_link" href="/live_html/">Live HTML Editor</a>
My Other Website
<a class="dialogue_link" href="/Dragon-Engine/">[FNF]Dragon Engine Documentation</a>
<a class="dialogue_link" href="/FNF-HTML5/">[FNF]Dragon Engine</a>
<a class="dialogue_link" href="/dubenderdragon-page/">[Old]dubenderdragon Page</a>
</div>
<div class="content">
<div class="dialogue">
<div class="dialogue_title">
<h3>
Oh No!
</h3>
</div>
<div class="dialogue_content">
<h3>
Oops! The page you're looking for doest't exists.
</h3>
<a class="button" href="/">Back To Page</a>
</div>
</div>
</div>
</body>
</html>