xxxxxxxxxx
24
let myFont;
function preload(){
myFont = loadFont('Dosis-Medium.ttf');
}
function setup() {
createCanvas(600, 600);
}
function draw() {
background(118, 39, 217);
textFont(myFont)
textSize(64)
text("Intro to IM",175,100)
textFont(myFont)
textSize(25)
text("Today is 9/17/24 and we are learning about displaying text", 20, 200)
}