-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.php
executable file
·25 lines (23 loc) · 926 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
23
24
25
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found</title>
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/404.css">
<script type="text/javascript" src="//use.typekit.net/lxg8uwu.js"></script>
<script type="text/javascript">try{Typekit.load();}catch(e){}</script>
</head>
<body class="error404">
<?php include('./includes/header.inc.php');?>
<div class="error-wrapper">
<article class="error-container">
<div class="skeletor">
<a href="/regisbiron/"><img src="img/404/skeletor-is-error.svg"></a>
<p><a target="_blank" href="http://skeletorislove.tumblr.com/">Today</a> I will not make any errors.</p>
</div>
</article>
</wrapper>
<?php include('./includes/footer.inc.php');?>
</body>
</html>