Holy-Unblocker/public/archive/f.html
QuiteAFancyEmerald 9aa7f459e2 Fixed some errors
2020-11-06 17:57:48 +00:00

37 lines
No EOL
915 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Flash Games</title>
<script>
function loadswf() {
var a, b, c;
a = "https://cdn.jsdelivr.net/gh/BinBashBanana/gstore/";
b = window.location.hash.substring(1) + ".swf";
c = document.body;
c.innerHTML = '<object class="gembed" data="' + a + b + '" type="application/x-shockwave-flash"><param name="wmode" value="direct"/></object>';
};
</script>
<style>
.gembed {
min-height: 100%;
min-width: 100%;
top: 0;
right: 0;
bottom: 0;
left: 0;
z-index: -1;
position: fixed;
}
.fbody {
background-color: black;
color: white;
font-family: sans-serif;
}
</style>
</head>
<body onload="loadswf();" class="gbody"></body>
</html>