-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.html
46 lines (44 loc) · 1.52 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" name="viewport" />
<meta name="viewport" content="width=device-width" />
<!-- Favicon and title -->
<link rel="icon" href="path/to/fav.png">
<title>Error 404 - DictPay</title>
<!-- Halfmoon CSS -->
<link href="assets/css/halfmoon-variables.css" rel="stylesheet" />
<link href="assets/css/custom.css" rel="stylesheet" />
<!--
Or,
Use the following (no variables, supports IE11):
<link href="https://cdn.jsdelivr.net/npm/halfmoon@1.1.1/css/halfmoon.min.css" rel="stylesheet" />
Learn more: https://www.gethalfmoon.com/docs/customize/#notes-on-browser-compatibility
-->
</head>
<body class="dark-mode">
<!-- Page wrapper start -->
<div class="page-wrapper">
<!-- Content wrapper start -->
<div class="content-wrapper">
<!-- Container fluid start -->
<div class="d-flex h-full align-items-center justify-content-center">
<!-- First comes a content container -->
<div class="content text-center">
<h1 class="font-weight-bolder">
404
</h1>
<h5>Oops!, You are lost</h5>
<img class="img-fluid w-400" src="./assets/img/404.svg" alt="404 Cat">
</div>
</div>
<!-- Container fluid end -->
</div>
<!-- Content wrapper end -->
</div>
<!-- Page wrapper end -->
</body>
</html