xxxxxxxxxx
let font;
function preload() {
font = loadFont('Mallanna-Regular.ttf');
}
function setup() {
createCanvas(windowWidth, windowHeight)
//console.log(windowWidth, windowHeight)
textFont(font)
textSize(24)
text("Please check the description!", 560, height / 2)
}