An error occurred while loading the file. Please try again.
HelloX3DOM.html 719 bytes
<html> 
    <head> 
        <title>My first X3DOM page</title> 			
        <script type='text/javascript' src='http://www.x3dom.org/download/x3dom.js'> </script> 
        <link rel='stylesheet' type='text/css' href='http://www.x3dom.org/download/x3dom.css'></link> 
    </head> 
    <body> 
        <h1>Hello, X3DOM!</h1> 
        <p> 
            This is my first html page with some 3d objects. 
        </p> 
	    <x3d width='600px' height='400px'> 
          <scene> 
            <shape> 
              <appearance> 
                <material diffuseColor='1 0 0'></material> 
              </appearance> 
              <box></box> 
            </shape>
          </scene> 
        </x3d> 
    </body> 
</html>