Here is my file
sketch.js “data-width=”300″ data-height=”300”
function setup() {
createCanvas(300, 300);
background(200, 200, 200);
noStroke();
fill(135);
ellipse(150, 150, 100, 70);
text("p5.js vers 0.5.12 test.", 10, 15);
}
function draw() {
}