Added core placeholder file and basic working example
diff --git a/asterix-examples/src/main/resources/html/example.html b/asterix-examples/src/main/resources/html/example.html
new file mode 100644
index 0000000..0a3af38
--- /dev/null
+++ b/asterix-examples/src/main/resources/html/example.html
@@ -0,0 +1,15 @@
+<!DOCTYPE html>
+<html>
+    <head>
+        <script src="http://localhost:19101/sdk/static/js/asterix-api-core.js"
+            type="text/javascript"></script>
+        <script src="../js/example.js" type="text/javascript"></script> 
+        <script>
+            var a = new AsterixAPI();
+            a.test();
+        </script>
+    </head>
+    <body>
+         
+    </body>
+</html>