xxxxxxxxxx
22
let myfont;
function preload(){
myfont = loadFont("HomemadeApple-Regular.ttf");
}
function setup() {
createCanvas(400, 400);
textSize(24)
textFont(myfont);
// textSize(width/3);
textAlign(CENTER, CENTER);
}
function draw() {
background(220);
let s = 'The quick brown fox jumped over the lazy dog.';
fill("#ad4632");
text(s, 130, 120, 170, 100); // (string, x coordinate, y coordinate, width of txt box, heght of text box)
text(s.charAt(0), 90, 40);// gives first character of the string on the screen
}