embed-example.html 555 B

123456789101112131415161718192021222324
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <title>Example webretro embed</title>
  6. <style>
  7. #webretro-container {
  8. width: 800px;
  9. height: 600px;
  10. }
  11. </style>
  12. </head>
  13. <body>
  14. <h1>Example webretro embed</h1>
  15. <div id="webretro-container"></div>
  16. <br>
  17. <a href="roms/LICENSE.txt">License for the example game "2048"</a>
  18. <script type="text/javascript" src="embed.js"></script>
  19. <script>
  20. webretroEmbed(document.getElementById("webretro-container"), "../", {system: "nes", rom: "2048.nes"});
  21. </script>
  22. </body>
  23. </html>