I am looking for admins for this site. If you would like to be one then go to Forms and then fill out the form there.
How to open something in about:blank
<button onclick="openGame()">Play Game in Fullscreen</button>
<script>
function openGame() {
// Open a new blank tab
var newTab = window.open('about:blank', '_blank');
// Redirect the new tab to your content's URL
newTab.location.href = 'https://your-content-url.com'; // Replace with your content's URL
}
</script>