xxxxxxxxxx
29
let msg = "Hello world";
let font;
function preload(){
font = loadFont("data/YatraOne-Regular.ttf");
}
function setup() {
createCanvas(400, 400);
textFont(font);
}
function draw() {
background(220);
fill(255, 0, 0);
strokeWeight(1);
stroke(0);
line(200, 0, 200, height);
line(0, 200, width, 200);
textSize(60);
textAlign(CENTER, CENTER);
text(msg, 200, 200);
}