-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
22 lines (22 loc) · 922 Bytes
/
404.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>404 - Page Not Found</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.2.1/css/all.min.css">
<link rel="stylesheet" href="/styles/general/error_page.css">
<link rel="stylesheet" href="/styles/general/styles.css">
</head>
<body>
<div class="error">
<h1 class="error__content__title">4
<i class="fa-regular fa-circle-question fa-flip"></i>
4
</h1>
<p class="error__content__text">Oops, Sadly the thing you are looking for doesn't exist.</p>
<button onclick="window.location.href='/'">Go Back Home</button>
</div>
</body>
</html>