xxxxxxxxxx
26
let myFont
let loc = 50;
function preload(){
myFont= loadFont("coralseriffinal-Regular.otf")
}
function setup() {
createCanvas(800, 600);
}
function draw() {
background(25);
textFont(myFont);
textSize(32);
stroke(25,204,201)
text("information...",loc,90,100);
loc = loc + 1
}