xxxxxxxxxx
17
let myFont;
function preload() {
myFont = loadFont('FascinateInline-Regular.ttf');
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
fill('#272324');
stroke(0);
textFont(myFont);
textSize(30);
text('My first custom font', 10, 40);
}