xxxxxxxxxx
47
let heycomicfont
let universityfont
let happychap
function preload() {
heycomicfont = loadFont("Hey Comic.ttf")
universityfont = loadFont("University.otf")
happychap = loadImage("jollygoodshow-removebg-preview.png")
}
function setup() {
createCanvas(350, 500);
}
function draw() {
background(225,126,186);
image(happychap,100,20,200,200)
textFont(universityfont)
textSize(20)
text("PERFORMANCES BY!",50,300)
text("Tyler The Creator!",50,325)
text("Plumtree!",50,350)
textSize(16)
text("and a couple more probably...",10,380)
textFont(heycomicfont)
textSize(20)
text("hey you should come to this awesome concert",10,35,10)
text("its gonna be pretty cool i think",10,250)
text("tickets will cost a pretty penny",10,270)
text("all tickets $11",100,410)
text("ALL SALES ARE FINAL! NO TAKEBACKS!",10,440)
text("this is not a scam we promise",30,470)
text("(not gauranteed)",80,490)
}