Skip to content

Instantly share code, notes, and snippets.

@chrisdavidmiles
Created April 30, 2022 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chrisdavidmiles/bfb8e968cb8d42eba6aadfce218cf499 to your computer and use it in GitHub Desktop.
Save chrisdavidmiles/bfb8e968cb8d42eba6aadfce218cf499 to your computer and use it in GitHub Desktop.
Internet Explorer 4 - Default 404 Page
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>404 - Page Not Found</title>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1" />
<meta name="ROBOTS" content="NOINDEX,NOFOLLOW,NOARCHIVE" />
<style type="text/css">
<!--
body { background-color: white; color: black; }
#container { width: 400px; }
#message { width: 400px; color: black; background-color: #FFFFCC; }
#bodytitle { font: 13pt/15pt verdana, arial, sans-serif; height: 35px; vertical-align: top; }
.bodytext { font: 8pt/11pt verdana, arial, sans-serif; }
a:link { font: 8pt/11pt verdana, arial, sans-serif; color: red; }
a:visited { font: 8pt/11pt verdana, arial, sans-serif; color: #4e4e4e; }
-->
</style>
</head>
<script>
var homepage = location.hostname;
</script>
<body>
<table cellpadding="3" cellspacing="5" id="container">
<tr>
<td><img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAhBAMAAADe7h2QAAAAD1BMVEX8/PyEhIQEBPwEBATLysxvzEZBAAAAX0lEQVQY063OQQqAQAiFYQMPMDVzgOnRAQQvUND9z5QQpa5qMf9C+EBEmp8KWTbuatIsUa1GlUOiuAapqpje+Fu8rLtrAkpW3vx3E0B3cRINEQObC1bPvwxUOz0hDckFWYAUqBLp/O8AAAAASUVORK5CYII=" alt="404" /></td>
<td id="bodytitle" width="100%">The page cannot be found</td>
</tr>
<tr>
<td class="bodytext" colspan="2">The page you are looking for might have been removed, had it's name changed, or is temporarily unavailable.</td>
</tr>
<tr>
<td colspan="2"><hr /></td>
</tr>
<tr>
<td class="bodytext" colspan="2">
Please try the following:
<ul>
<li>Load the page again by clicking the <a href="#" onclick="window.location = window.location;">Refresh</a> button in your web browser.</li>
<li>Open the <a href="/"><script>document.write(location.hostname);</script></a> home page, then try to open another page.</li>
<li>Click the <a href="javascript:history.back(1)">Back</a> button to try another link.</li>
</ul>
</td>
</tr>
<tr>
<td class="bodytext" colspan="2">HTTP 404 - File Not Found</td>
</tr>
<tr>
<td class="bodytext" colspan="2">&nbsp;<br />Internet Explorer</td>
</tr>
</table>
</body>
</html>
@chrisdavidmiles
Copy link
Author

Here's a live demo of this 404 page

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment