diff --git a/Mandelbrot.html b/Mandelbrot.html
new file mode 100644
index 0000000..afa3e09
--- /dev/null
+++ b/Mandelbrot.html
@@ -0,0 +1,134 @@
+
+
+
+
+ Interaktives Mandelbrot
+
+
+
+
+
Mandelbrot Explorer
+
Links-Klick Zoom In
+
Rechts-Klick Zoom Out
+
Berechne...
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Mandelbrot.jl b/Mandelbrot.jl
index 6db6153..db9766c 100644
--- a/Mandelbrot.jl
+++ b/Mandelbrot.jl
@@ -20,5 +20,6 @@ function draw()
# Zeichnet einen einzelnen Punkt (Pixel) bei x=200, y=200
# Da ein Pixel winzig ist, nutzt man oft ein kleines Rechteck
# oder die Point-Funktion.
- draw(Rect(200, 200, 1, 1), :red, fill=true)
+ draw(Rect((200, 200), (1, 1)), colorant"red", fill=true)
+
end
\ No newline at end of file