xxxxxxxxxx
21
let myFont;
function preload() {
myFont = loadFont('ProtestGuerrilla-Regular-1.ttf')
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(60)
fill(255,0,0,40)
stroke(255,0,0)
strokeWeight(3)
textFont(myFont)
text("amna is coding", 10,200)
}