18 lines
389 B
HTML
18 lines
389 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Title</title>
|
|
</head>
|
|
|
|
<body>
|
|
This window will close in 2 seconds. You can close it manually if it doesn't.
|
|
|
|
<script type="text/javascript">
|
|
setTimeout(function(){
|
|
window.close();
|
|
}, 2000);
|
|
</script>
|
|
</body>
|
|
</html> |