-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
59 lines (47 loc) · 1.94 KB
/
Copy path404.html
File metadata and controls
59 lines (47 loc) · 1.94 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
<!DOCTYPE html>
<html lang="de" >
<head>
<title>404 Site not found</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="/stylesheet.css">
<script src="https://kit.fontawesome.com/047f4e48cc.js" crossorigin="anonymous"></script>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script src="/scripts.js"></script>
<link rel="shortcut icon" href="/favicon404.ico" type="image/x-icon"> <!--Einbettung des Favicon-->
<link rel="icon" href="/favicon404.ico" type="image/x-icon">
<script src="scripts.js"></script>
</head>
<body class="Home">
<header>
<div class="Titel"> <h1>Website of N.T.</h1> </div>
</header>
<nav>
<div >
<a class="nav Lighttheme" href="https://woodtree37.github.io/index.html" >Return to Home</a>
</div>
</nav>
<h2 style="font-size: 75px;">404</h2>
<article style="text-align: center;">Unfortunately, this page doesn't exit. <br>
You can return to the main menu via the Button. <br> <br>
If you feel like this page is missing due to an error, please contact <a href="mailto:nick.truttmann@icloud.com">nick.truttmann@icloud.com</a>
</article>
<aside>
<div class="Darkmode Lighttheme" id="dark">
<span>Darkmode:
<label class="switchD">
<input type="checkbox" id="darkcheck" onclick="changeCookieDark()">
<span class="slider round"></span>
</label>
</span>
</div>
<script>
var dark = getCookie("darkmode");
if(dark == "on"){
Darkmode();
document.getElementById("darkcheck").checked = true;
}
</script>
</aside>
</body>
</html>