-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
45 lines (34 loc) · 1.51 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
<!DOCTYPE html>
<html lang="en" class="scroll-smooth">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/style.css"/>
<link rel="stylesheet" href="/line-awesome/css/line-awesome.min.css"/>
<link rel="icon" type="image/x-icon" href="/favicon.png">
<script src="/js/main.js" defer></script>
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://genna.win/rss.xml">
<link rel="alternate" type="application/atom+xml" title="Atom" href="https://genna.win/atom.xml">
</head>
<body class="bg-white dark:bg-zinc-900 transition ease-in-out">
<section>
<div class="h-screen w-screen flex flex-col items-center justify-center">
<div class="font-serif text-4xl lg:text-8xl text-slate-800 dark:text-slate-400">
404
</div>
<div class="flex items-center gap-1 text-4xl text-slate-500">
<div class="p-2 hover:bg-slate-800 transition">
<a href="javascript:history.back()">
<i class="las la-arrow-left"></i>
</a>
</div>
<div class="p-2 hover:bg-slate-800 transition">
<a href="/" aria-label="Home">
<i class="las la-home"></i>
</a>
</div>
</div>
</div>
</section>
</body>
</html>