XHH Posted June 10, 2014 Share Posted June 10, 2014 Hello, I've made a game in phaser. It's all in a html file with the assets folder next to it. Now how do I actually put it on my website that is hosted on Google Sites? I'm very new to web development. Thanks. Link to comment Share on other sites More sharing options...
cach-x Posted June 11, 2014 Share Posted June 11, 2014 Quickest way would be on an iFrame. In your website use something like<iframe src="gamebuild/index.html" name="bestgameever" width="800" height="600" frameborder="0" scrolling="no"> <p>Your browser does not support iframes.</p> ></iframe>Where "gamebuild/index.html" is the address of your game. menthos984 and XHH 2 Link to comment Share on other sites More sharing options...
XHH Posted June 12, 2014 Author Share Posted June 12, 2014 Quickest way would be on an iFrame. In your website use something like<iframe src="gamebuild/index.html" name="bestgameever" width="800" height="600" frameborder="0" scrolling="no"> <p>Your browser does not support iframes.</p> ></iframe>Where "gamebuild/index.html" is the address of your game.That one works ^.^ Thank you! Link to comment Share on other sites More sharing options...
Recommended Posts