본문 바로가기
프로그래밍/Web

HTML redirect

by CaffeLatte 2015. 3. 3.

<html>

<head>

<script type="text/javascript">

<!--

function delayer(){

   window.location = "http://www.google.com/index.html"

}

//-->

</script>

</head>

<body onLoad="setTimeout('delayer()')">

<h2>Prepare to be redirected!</h2>

<p>This page is a time delay redirect, please update your bookmarks to our new 

location!</p>


</body>

</html>

댓글