<!DOCTYPE html>
Auto Popup
Main Page
The popup should open automatically.
<html>
<head>
<title>Auto Close Tab</title>
</head>
<body>
<h2>This tab will close automatically in 5 seconds...</h2>
<script>
setTimeout(function () {
window.close();
}, 5000); // 5000 milliseconds = 5 seconds
</script>
</body>
</html>
Post a Comment