<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>对不起！你访问的页面不存在！</title>
<style>
body{ background-color:#F8F8F8;}
#main{ width:400px; height:200px; padding:30px; margin:100px auto 0 auto; line-height:200%; background-color:#FFF; border:1px solid #6F9EB4;-moz-border-radius: 15px;  -webkit-border-radius: 15px;  border-radius:15px; text-align:center; font-family:"Microsoft Yahei",Arial, Helvetica, sans-serif}
h1{ font-size:30px;}
.copy{ margin-top:50px; font-size:12px; color:#CBC7C7;}
.copy a{color:#CBC7C7;}
</style>
</head>
<body>
<div id="main">
   <h1>404 Not Found</h1>
对不起！你访问的页面不存在，<input type="text" readonly value="5" id="time" style="width:30px; height:20px; line-height:20px; text-align:center; color:#FD5E00; font-weight:bold; font-size:14px;" />秒后 <a href="/">返回首页</a><br>
<div class="copy">&copy; <a href="http://www.iseod.com/" target="_blank">i优网</a></div>
</div>
<script language="javascript"> 
var t = 5; 
var time = document.getElementById("time"); 
function fun(){ 
t--; 
time.value = t; 
if(t<=0){ 
location.href = "/"; 
clearInterval(inter); 
} 
} 
var inter = setInterval("fun()",1000); 
</script>
</body>
</html>