| 123456789101112131415161718192021222324 | <!DOCTYPE html><html>	<head>		<meta charset="UTF-8">		<title>Example webretro embed</title>		<style>			#webretro-container {				width: 800px;				height: 600px;			}		</style>	</head>	<body>		<h1>Example webretro embed</h1>		<div id="webretro-container"></div>		<br>		<a href="roms/LICENSE.txt">License for the example game "2048"</a>				<script type="text/javascript" src="embed.js"></script>		<script>			webretroEmbed(document.getElementById("webretro-container"), "../", {system: "nes", rom: "2048.nes"});		</script>	</body></html>
 |