-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.html
More file actions
37 lines (30 loc) · 1.12 KB
/
404.html
File metadata and controls
37 lines (30 loc) · 1.12 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Nalton Software</title>
<link href="/websiteAssets/normalStyle.css" rel="stylesheet" type="text/css">
<link href="/websiteAssets/favicon.png" rel="icon">
</head>
<body>
<div class="topbar" id="topbar">
<h1>Nalton Software</h1>
<button onclick="toggleSidebar()" id="sidebarButton">Hide all pages</button>
</div>
<table class="mainLayoutTable" id="mainLayoutTable">
<tr>
<td class="sidebarHolder" id="sidebarHolder">
<div class="sidebar" id="sidebar"></div>
</td>
<td class="mainHolder" id="mainCell">
<div class="main" id="mainCellInternals" style="text-align: center;">
<h1 style="font-size: 200px;">404</h1>
<h1>The page you are looking for does not exist</h1>
</div>
</td>
</tr>
</table>
<script src="/websiteAssets/normalFunctions.js"></script>
</body>
</html>