xxxxxxxxxx
let photo;
let font;
function preload() {
photo = loadImage('small_computer.jpg');
font = loadFont('Roboto-Regular.ttf');
}
function setup() {
background(250);
createCanvas(photo.width, photo.height + 100);
image(photo, 0, 0);
textFont(font);
noLoop();
}
function draw() {
textAlign(CENTER, BOTTOM);
textSize(50);
text('This is no computer.', width/2, height - 20);
textSize(10);
text('Entry in Genuary 2022 "No computer." challenge.', width/2, height);
}