-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
53 lines (49 loc) · 1.6 KB
/
404.html
File metadata and controls
53 lines (49 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Created by ApatheticDELL -->
<title>ApatheticDELL Center</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="./navstyle.css">
<link rel="stylesheet" href="./universal.css">
<link rel="icon" type="image/x-icon" href="./assets/favicon.png">
</head>
<style>
main {
text-align: center;
}
img {
width: 35vh;
height: auto;
}
a:link, a:visited {
color: white;
}
</style>
<body>
<!-- Website navigation -->
<nav class="site-nav">
<div class="nav-left">
<img src="./assets/adlogo.png" alt="Logo" />
<span class="site-title">ApatheticDELL</span>
</div>
<div class="nav-right">
<a class="site-title" href="./index.html">Home</a>
<a href="./bulletins.html">Bulletins</a>
<a href="./about.html">About</a>
</div>
</nav>
<main>
<h1>Oh no</h1>
<p>We couldn't find what you're looking for. (404)</p>
<img src="./dell_ouch.png" />
<p>Don't worry, you can go back <a href="./index.html">home</a>!</p>
</main>
<footer>
<p>Copyright © ApatheticDELL</p>
<p>Website created by ApatheticDELL and <a href="https://bunnytub.com/">BunnyTub</a></p>
<br/><br/>
</footer>
</body>
</html>