From e9051c25d7e6afb93bd4b2cddf26f8fc92a2d4a1 Mon Sep 17 00:00:00 2001 From: Volker Coors <volker.coors@hft-stuttgart.de> Date: Tue, 19 Apr 2022 19:26:44 +0000 Subject: [PATCH] Upload HelloX3DOM --- Exercise 2/HelloX3DOM.html | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 Exercise 2/HelloX3DOM.html diff --git a/Exercise 2/HelloX3DOM.html b/Exercise 2/HelloX3DOM.html new file mode 100644 index 0000000..56c96ad --- /dev/null +++ b/Exercise 2/HelloX3DOM.html @@ -0,0 +1,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> \ No newline at end of file -- GitLab