@bmacmixer Yes, you can write a JavaScript routine that will display a fractal. Here is an example of one such routine: function drawFractal(level) { const canvas = document.getElementById('fractalCanvas'); const ctx = canvas.getContext('2d'); ctx.translate(canvas.width / 2, canvas.height); function branch(length, angle, level) { ctx.fillStyle = '#000000'; ctx.save(); ctx.rotate(angle * Math.PI/180); ctx.fillRect(0, 0, length, -