frontend/blank.html
skysthelimitt cc7148dfda help
2023-10-15 18:26:28 -04:00

33 lines
894 B
HTML

<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
<script>
function createBlank() {
win = window.open();
win.document.body.style.margin = "0";
win.document.body.style.height = "100vh";
var iframe = win.document.createElement("iframe");
iframe.style.border = "none";
iframe.style.width = "100%";
iframe.style.height = "100%";
iframe.style.margin = "0";
iframe.referrerpolicy = "no-referrer";
iframe.allow = "fullscreen";
iframe.src = location.origin;
win.document.body.appendChild(iframe);
}
createBlank();
</script>
<style>
body {
background-color: black;
color: white;
text-align: center;
align-content: center;
}
</style>
</head>
<body>
</body>
</html>