<!DOCTYPE html>
<div>
<p class=”message”>Thank you for your request</p>
<p class=”message2″>This page will close automatically in 5 seconds</p>
</div>
<script>
// Close the page after 5 seconds
setTimeout(function(){
window.close();
}, 5000);
</script>