jacobinathanialpeterson's picture
Rename 60secondburgerrun to 60secondburgerrun/index.html
3f44c6d
raw
history blame
667 Bytes
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://unpkg.com/@ruffle-rs/ruffle"></script>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<div id="container"></div>
<script>
window.RufflePlayer = window.RufflePlayer || {};
window.addEventListener("load", (event) => {
const ruffle = window.RufflePlayer.newest();
const player = ruffle.createPlayer();
const container = document.getElementById("container");
container.appendChild(player);
player.load("flash.swf");
});
</script>
</body>
</html>