Skip to content

Commit

Permalink
Create 404.html
Browse files Browse the repository at this point in the history
  • Loading branch information
mcnole25 authored Jan 8, 2024
1 parent 4e3d95b commit ee68bf9
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions 404.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html>
<head>
<title>Character Counter</title>
<style>
h1 {color: #ffff00; font-family: trebuchet ms; text-align: center; font-size:300%}
p {color: #ffffff; font-family: trebuchet ms; text-align: center; font-size:150%}
body {background-color: #404040;}
button {margin: 0px auto; display: block; font-size: 200%}
</style>
</head>
<body>
<h1>404 Error</h1>
<p>It looks like this page is, well, not found.</p>
<p>If the URL is misspelt, check to make sure if it's spelt correctly.</p>
<p>Sorry for the inconvenience.</p>
<button id="myButton" class="float-left submit-button" >Back to Homepage</button>

<script type="text/javascript">
document.getElementById("myButton").onclick = function () {
location.href = "https://mcnole25.github.io";
};
</script>
</body>
</html>

0 comments on commit ee68bf9

Please sign in to comment.