HelloX3DOM.html 719 Bytes
Newer Older
Volker Coors's avatar
Volker Coors committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<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>