15 lines
266 B
HTML
15 lines
266 B
HTML
|
<!DOCTYPE HTML>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Page Redirection</title>
|
||
|
<meta http-equiv=refresh content="0; url=index.jim" />
|
||
|
<script>
|
||
|
window.location.href = "index.jim";
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
You are being redirected to <a href=index.jim>index.jim>/a>
|
||
|
</body>
|
||
|
</html>
|
||
|
|