xxxxxxxxxx
function setup() {
createCanvas(400, 400);
background(255);
}
function draw() {
noStroke();
fill(245, 186, 59)
rect(155, 100, 75, 25);
triangle(155, 100, 155, 125, 150, 100);
triangle(235, 100, 230, 100, 230, 125);
fill(245)
rect(165, 125, 55, 160);
triangle(165, 125, 165, 285, 155, 125);
triangle(220, 125, 220, 285, 230, 125);
rect(165, 285, 55, 20);
rect(165, 305, 55, 10);
fill(245, 186, 59);
textSize(9);
text('underscores', 168, 160);
textSize(9);
text('___', 165, 190);
textSize(6);
text('skin', 165, 200);
text('purifying', 165, 207);
text('treatment', 165, 214);
textSize(4);
text('extended play', 170, 280);
text('8 tracks', 170, 285);
}