-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
46 lines (45 loc) · 1.5 KB
/
404.html
File metadata and controls
46 lines (45 loc) · 1.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Using absolute references as we don't know the exact sub-path this file is used for -->
<meta charset="utf-8"/>
<title>linux-user36</title>
<meta content="width=device-width, initial-scale=1, shrink-to-fit=no" name="viewport"/>
<link rel="stylesheet" type="text/css" href="/internal/style.css"/>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,400;0,700;1,400;1,700"/>
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css2?family=Roboto+Mono:ital,wght@0,400;0,700;1,400;1,700"/>
</head>
<body>
<header>
<div class="navbar">
<a class="active" href="/">Home</a>
<a href="/news">News</a>
<div class="dropdown">
<a class="dropdown-option" href="/projects.html">Projects</a>
<div class="dropdown-content">
<a href="/yedex">Yedex</a>
<a href="/other-projects/mineclone.html">MineClone</a>
</div>
</div>
<a href="/about.html">About</a>
</div>
</header>
<div class="content">
<h1>Oops! That’s a 404</h1>
<p>This page doesn’t seem to exist. Below is a list of other pages you could visit instead:</p>
<ul>
<li><a href="/">Home</a></li>
<li><a href="/news">News</a></li>
<li><a href="/projects">Projects</a></li>
<ul>
<li><a href="/yedex">Yedex</a></li>
<li><a href="/other-projects/mineclone.html">MineClone</a></li>
</ul>
<li><a href="/about.html">About</a></li>
<ul>
<li><a href="/history.html">History</a></li>
</ul>
</ul>
</div>
</body>
</html>