Interactive fractal generator using recursive HTML table algorithms
Concept: This generates Sierpinski's Gasket using pure HTML tables and JavaScript. Each iteration creates a fractal pattern by recursively dividing squares into smaller sections.
How it works: The algorithm starts with a large square and recursively replaces each filled square with a pattern of smaller squares, leaving the center empty to create the characteristic triangular fractal pattern.
Historical Note: This was an experimental project to generate fractals using only HTML table elements and CSS, demonstrating creative uses of web technologies.