mirror of https://github.com/reiyua/reiyua.lol.git
16 lines
500 B
HTML
16 lines
500 B
HTML
|
<!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>
|