mirror of https://github.com/reiyua/reiyua.lol.git
Implement basic 404 page to be upgraded.
This commit is contained in:
parent
40f4ff5d5d
commit
fa9547d587
|
@ -0,0 +1,16 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>404 - File Not Found</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="container">
|
||||
<h2>Whoops! Page Not Found</h2>
|
||||
<p>You must have made a typo of sorts, feel free to click the link below to retrn to my main page.</p>
|
||||
<a href="/" class="button">Go Back Home</a>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue