diff --git a/Exercise 2/HelloX3DOM.html b/Exercise 2/HelloX3DOM.html
new file mode 100644
index 0000000000000000000000000000000000000000..56c96add202975e70dc22d5c43963d0ab9ed92ae
--- /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