Hello I just wonder how i can display exported html5 game inside my own website but on specific size for example in a window 800x600 (in bordered box) ?
could someone help me with html code etc?
THX!
Hello I just wonder how i can display exported html5 game inside my own website but on specific size for example in a window 800x600 (in bordered box) ?
could someone help me with html code etc?
THX!
Hi, I use an iframe for mine:
<iframe src="YOURGAMEURLHERE.html" height="800" width="600"></iframe>
Other parameters for the code above can be found here or you can just Google iframes:
It’s possible to put your game files into a subdirectory or folder and then put the URL into the iframe code, that way you can keep your top level directory for your main content (i.e, announcements, release news, etc) if you want.
Hope that helps!
THX A LOT! I will try this tomorrow:)