diff --git a/favicon.ico b/favicon.ico new file mode 100644 index 0000000..22ead45 Binary files /dev/null and b/favicon.ico differ diff --git a/index.html b/index.html index 2fc401b..517e176 100644 --- a/index.html +++ b/index.html @@ -1,56 +1,60 @@ - - - - - + + + GUI-DAT + + + + + + - - - - - - - + + + + + + - - -
+            };
+        
+    
+    
+        
 var controllableObject = 
    {   
       numberProperty: 20,
@@ -65,24 +69,27 @@ var controllableObject =
 window.onload = function() {
 
    GUI.start();
-   
+
    // Creates a number box
    GUI.add(controllableObject, "numberProperty");
-   
+
    // Creates a slider (min, max)
    GUI.add(controllableObject, "constrainedNum", -100, 100, 0);
-   
+
    // Creates a text field
    GUI.add(controllableObject, "textProperty");
-   
+
    // Creates a checkbox
    GUI.add(controllableObject, "booleanProperty");
-   
+
    // Creates a button
    GUI.add(controllableObject, "functionProperty")
       .setName("Fire a Function");
 
 };
-
- +
+ + \ No newline at end of file