Fix 404 page pointing to wrong css

This commit is contained in:
Tyler Perkins 2022-11-26 14:52:15 -05:00
parent fd3b45af7a
commit 0085c3ae88

View File

@ -1,12 +1,12 @@
<!DOCTYPE html> <!DOCTYPE html>
<html> <html>
<head> <head>
<?php include 'common/include.php' ?> <?php include '/common/include.php' ?>
<title>Tyler Perkins - 404</title> <title>Tyler Perkins - 404</title>
<link rel="stylesheet" href="error.css"> <link rel="stylesheet" href="error.css">
</head> </head>
<body> <body>
<?php include 'common/header.php' ?> <?php include '/common/header.php' ?>
<div class="error-div top-fade"> <div class="error-div top-fade">
<div class="error-message"> <div class="error-message">
@ -19,6 +19,6 @@
</div> </div>
</div> </div>
<?php include 'common/footer.php' ?> <?php include '/common/footer.php' ?>
</body> </body>
</html> </html>