-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
69 lines (62 loc) · 2.91 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!--
© 2021 Chloe K. Arciniega.
Some credit goes to Espi (https://espi.me). Thank you! <3
Licensed under MIT.
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Font -->
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<!-- FontAwesome -->
<script src="https://kit.fontawesome.com/ceb6d57fd7.js" crossorigin="anonymous"></script>
<!-- Compatibility -->
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Metadata -->
<meta name="author" content="Chloe">
<meta name="description" content="Personal webpage for Chloe Arciniega.">
<meta name="keywords" content="solelychloe,chloe,sol">
<!-- OpenGraph -->
<meta property="og:description" content="Personal webpage for Chloe Arciniega.">
<meta property="og:image" content="/assets/img/icon.png">
<meta property="og:site_name" content="solely.codes">
<meta property="og:title" content="solelychloe">
<meta property="og:type" content="website">
<meta property="og:url" content="https://solely.codes">
<!-- Site -->
<link rel="icon" href="/assets/img/icon.png" type="image/png" sizes="16x16">
<title>solelychloe</title>
<!-- Style-->
<link rel="stylesheet" type="text/css" href="assets/style/normalize.css">
<link rel="stylesheet" type="text/css" href="assets/style/sakura.css">
<meta name="theme-color" content="#BD488E">
<!-- Twitter -->
<meta name="twitter:card" content="summary">
<meta name="twitter:creator" content="@solelychloe">
<meta name="twitter:description" content="Personal webpage for Chloe Arciniega.">
<meta name="twitter:image" content="/assets/img/icon.png">
<meta name="twitter:site" content="@solelychloe">
<meta name="twitter:title" content="Chloe">
<!-- Windows -->
<meta name="msapplication-navbutton-color" content="#BD488E">
<meta name="msapplication-square150x150logo" content="/assets/img/icon.png">
<meta name="msapplication-TileColor" content="#BD488E"/>
</head>
<body>
<div class="pnf">
<h4><a onclick="goBack()" class="back"><i class="fas fa-arrow-left"></i> Go back</a></h4>
<h2>Page not found.</h2>
<p>The page you were looking for does not exist.</p>
<p>© 2021 Chloe K. Arciniega. Site inspired by <a href="https://espi.me">sysdotini</a>. Powered by <a href="https://github.com/oxalorg/sakura">sakura.css</a>.</p>
</div>
</div>
</body>
<script>
function goBack() {
window.history.back();
}
</script>
</html>