-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path404.html
48 lines (37 loc) · 1.15 KB
/
404.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title></title>
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="fontawesome/css/fontawesome.css">
<link rel="stylesheet" href="hallo.css">
<style>
body {
color: #FFF !important;
background-color: #292d36 !important;
}
a {
color: #FFF !important;
}
a:hover {
color: #87aade !important;
}
img.portrait {
border: 10px solid #FFF !important;
}
</style>
</head>
<body>
<main>
<div class="column left">
<a href="/"><img src="images/logo.png" class="portrait" alt="Portrait" /></a>
</div>
<div class="column right">
<h1>404</h1>
<p>Nothing to see here.</p>
</div>
</main>
</body>
</html>