<?php
class error_404
{
public function display_error()
{
echo "<html>
<head>
<title>404 Page not found</title>
</head>
<body>
<h2 style=\"font-family: Verdana, Arial, Helvetica, sans-serif; color:#993300;\">404 Page not found</h2>
</body>
</html>";
}
}
?>