1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| <!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Refresh" content="2; URL=http://www.destination.com/" />
<title>Redirection</title>
</head>
<body>
<p>
Redirection en cours...<br /><br />
Cliquez sur le lien ci-dessous si votre navigateur ne vous redirige pas automatiquement.<br /><br />
<a href="http://www.destination.com/">Titre du site</a>
</p>
<script type="text/javascript">
function refresh(){
clearTimeout(timer);
window.location='http://www.destination.com/';
}
var timer=setTimeout(refresh,2000);
</script>
</body>
</html> |