<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>秦皇岛职业技术学院</title>
</head>

<body>
<p align="center" style="font-size:24px;color:red; line-height:48px;">对不起，您访问的网址不存在。</p>
<div style="text-align:center"></div>
<script>
var btn = document.querySelector('button');
var div = document.querySelector('div');
div.addEventListener('open', function() {
location.href = 'https://www.qvc.edu.cn/';
});
var timer = 5;
setInterval(function() {
if (timer == 0) {
location.href = 'https://www.qvc.edu.cn';
} else {
div.innerHTML = '您将在' + timer + '秒钟之后跳转到学院首页';
timer--;
}
}, 1000);
</script>
</body>
</html>
