xxxxxxxxxx
22
// For long text, it's easiest to put it in a variable
let manifest = "I will achieve ______ goal by ______. I am healthy and strong. Everything is in divine order. I can do hard things."
function setup() {
createCanvas(800, 400);
}
function draw() {
background(50, 20, 40);
stroke(255, 50);
noFill();
// Drawing the box (not necesary just for visual reference!)
rect(20, 20, 760, 360);
fill(255, 150, 200);
textSize(48);
textFont("Georgia");
// When you draw text with 4 numbers you create a box that the text fits in
// x, y position of box followed by width and height of the box
text(manifest, 20, 20, 760, 360);
}