xxxxxxxxxx
17
let myFont ;
function preload(){
myFont = loadFont('BebasNeue-Regular.ttf')
}
function setup() {
createCanvas(400, 400);
textFont(myFont);
}
function draw() {
background(0);
textSize(60);
fill("rgb(250,205,205)")
strokeWeight(10);
text("BEYONCÉ", 90, 200);
}