xxxxxxxxxx
23
function preload(){
myFont= loadFont('ProtestGuerrilla-Regular.ttf');
}
function setup() {
createCanvas(400, 400);
}
function draw() {
background(220);
textSize(50);
fill('#9C27B0');
stroke(0);
strokeWeight(2);
textFont("Times New Roman");
text("HI!!!",200,200);
textSize(30);
fill('#6D097E');
noStroke();
textFont(myFont);
text("My Name Is Ghadir",100,250);
}