-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
1d93ee6
commit af8168d
Showing
2 changed files
with
30 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/main-style.css" rel="stylesheet" type="text/css"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/error-style.css" rel="stylesheet" type="text/css"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/cursedFavicon.png" rel="icon" | ||
type="image/x-icon" /> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/main-style.css" rel="stylesheet" | ||
type="text/css"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/error-style.css" rel="stylesheet" | ||
type="text/css"> | ||
<title>404 - Page Not Found</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h1>404 - Page Not Found</h1> | ||
<div id="errorMessageContainer"></div> | ||
</div> | ||
<footer id="dynamicFooter"></footer> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/404-error-message.js"></script> | ||
</body> | ||
</html> | ||
|
||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/main-style.css" rel="stylesheet" type="text/css"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/error-style.css" rel="stylesheet" type="text/css"> | ||
<title>500 - Internal Server Error</title> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/cursedFavicon.png" rel="icon" type="image/x-icon" /> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/main-style.css" rel="stylesheet" | ||
type="text/css"> | ||
<link href="https://cursedprograms.github.io/cursedentertainment/styles/error-style.css" rel="stylesheet" | ||
type="text/css"> | ||
<title>500 - Internal Server Error</title> | ||
</head> | ||
|
||
<body> | ||
<div class="container"> | ||
<h1>500 - Internal Server Error</h1> | ||
<div id="errorMessageContainer"></div> | ||
</div> | ||
<footer id="dynamicFooter"></footer> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/500-error-message.js"></script> | ||
<div class="container"> | ||
<h1>500 - Internal Server Error</h1> | ||
<div id="errorMessageContainer"></div> | ||
</div> | ||
<footer id="dynamicFooter"></footer> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/footer.js"></script> | ||
<script src="https://cursedprograms.github.io/cursedentertainment/scripts/500-error-message.js"></script> | ||
</body> | ||
</html> | ||
|
||
</html> |