blender games web access

How do I make it so that people can play the games that I make through my website.

Put your .blend at the same place as your html, then add this code in your html code




<object classid="clsid:5DB05CB8-7751-469D-A1DD-45C8C201C013 "
		codeBase="http://download.blender.org/release/plugin/Blender3DPlugin.cab#Version=2,25,4,0" 
		id="BlenderPlayer" width="490" height="390">
			<param name="blenderURL" value="your.blend" />
			<embed type="application/x-blender-plugin" 
			PLUGINSPAGE="http://www.blender3d.org/BlenderProducts/plugin_download_netscape.php"; name="NPBlender" 
			width="640" height="480" src="your.blend">
			</embed> 
		</object>
</p>

…and edit the ‘your.blend’ to the name of your .blend. Change also the ratio of the screen by changing the with and hight.

easy :smiley:

Alright thanks