Files
moon-gaming/wedrowemdlemtest/webretro-master/webretro-master/embed/Legend of Zelda, The - A Link to the Past.html
T
2024-10-15 17:33:18 +00:00

29 lines
716 B
HTML

<html>
<head>
<meta charset="UTF-8">
<title>Legend of Zelda, The - A Link to the Past</title>
<style>
#webretro-container {
width: 800px;
height: 600px;
}
</style>
</head>
<body>
<h1>Super Mario All-Stars</h1>
<div id="webretro-container"></div>
<br>
<input type="button" id="fullscreen" value="Fullscreen">
<br>
<br>
<script type="text/javascript" src="embed.js"></script>
<script>
var frame = webretroEmbed(document.getElementById("webretro-container"), "../", {system: "SNES", rom: "Legend of Zelda, The - A Link to the Past (USA)"});
document.getElementById("fullscreen").onclick = function() {
frame.requestFullscreen();
};
</script>
</body>
</html>