xxxxxxxxxx
33
let myFont;
function preload() {
myFont = loadFont("Angel.ttf");
}
function setup() {
createCanvas(800, 600);
background(250,230,300);
textFont(myFont);
textSize(120);
fill(20, 20, 160);
text("The Beatles", 60, 100);
fill(230, 100, 160);
textSize(80);
text("John Lennon", 160, 200);
text("Paul McCartney", 110, 280);
text("George Harrison", 100, 360);
text("Ringo Starr", 190, 440);
thaFont = loadFont("Comic.ttf");
textFont(thaFont);
textSize(45);
fill(230, 100, 160);
text("LIVE AT MADISON SQUARE GARDEN", 10, 540);
text("All Tickets $5.00", 250, 590);
}
function draw() {}