-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnot_found.html
80 lines (70 loc) · 2.81 KB
/
not_found.html
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="images/cacodemon.png">
<link href="style/fonts.css" rel="stylesheet">
<link href="style/base.css" rel="stylesheet">
<link href="style/win98.css" rel="stylesheet">
<title>Cappig's web dump</title>
</head>
<body class="error-bg">
<div class="window border window-focused" id="title-window">
<div class="window-title">
<img src="images/cacodemon.png" alt="cacodemon" class="inline-icon">
<span class="window-title-text">title_win.html</span>
<button class="window-title-button">
<img src="images/close.svg" alt="close"></button>
</div>
<div class="window-body">
<a href="index.html">
<h1 class="main-title">CAPPIG.DEV</h1>
</a>
<h2 class="main-subtitle">website / blog / project dump</h2>
<a href="https://github.com/cappig/blog">
<h2 class="main-subtitle">(work in progress)</h2>
</a>
</div>
</div>
<div class="window border" id="content-window">
<div class="window-title">
<img src="images/error.png" alt="error" class="inline-icon">
<span class="window-title-text">not_found.html</span>
<button class="window-title-button"><img src="images/close.svg" alt="close"></button>
</div>
<div class="window-body">
<a href="index.html">
<h1 class="main-title">404</h1>
</a>
<h2 class="main-subtitle">Page not found :(</h2>
<h2 class="main-subtitle"></h2>
</div>
</div>
<div class="navbar">
<div class="navbar-start">
<button class="navbar-button border">
<img src="images/cool_sun.png" alt="cool_sun" class="inline-icon">
<a href="index.html">
<span class="window-title-text">Cappig.dev</span>
</a>
</button>
</div>
<div class="navbar-windows">
<button class="navbar-button border">
<img src="images/cacodemon.png" alt="cacodemon" class="inline-icon">
<span class="window-title-text">title_win.html</span>
</button>
<button class="navbar-button border">
<img src="images/error.png" alt="error" class="inline-icon">
<span class="window-title-text">not_found.html</span>
</button>
</div>
<div class="navbar-tray">
<span class="navbar-tray-clock">23:59:60</span>
</div>
</div>
<script src="script/window.js"></script>
<script src="script/clock.js"></script>
</body>
</html>