function setup() {
createCanvas(400, 400);
noLoop(); // Stops unnecessary looping
let iframe = createElement('iframe', '');
iframe.attribute('src', 'https://yp3d.com/');
iframe.attribute('width', '400');
iframe.attribute('height', '400');
iframe.style('border', 'none');
iframe.style('position', 'absolute');
iframe.style('top', '0');
iframe.style('left', '0');
}