This commit is contained in:
zyqunix 2025-03-15 22:09:18 +01:00
parent b49b1412c0
commit 37c2a85b90
2 changed files with 33 additions and 0 deletions

16
plinko/index.html Normal file
View file

@ -0,0 +1,16 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="iframe-wrapper">
<iframe src="https://bgaming-network.com/play/Plinko/FUN?server=demo" frameborder="0" id="gamefileEmbed1" scrolling="no"></iframe></div>
</body>
</html>

17
plinko/style.css Normal file
View file

@ -0,0 +1,17 @@
html, body {
margin: 0;
height: 100%;
width: 100%;
}
.iframe-wrapper {
height: 100%;
width: 100%;
display: flex;
}
iframe {
width: 100%;
height: 100%;
border: none;
}