index.html<div id='container'></div>
index.jsconst sketch = function(p) {
p.setup = function() {
p.createCanvas(100, 100);
}
p.draw = function() {
p.background(0);
p.fill(100);
p.noStroke();
p.ellipse(width/2, height/2, 50);
}
}
new p5(sketch, 'contaienr');