xxxxxxxxxx
26
//meme by victoria belandria
//link to pic: https://www.pexels.com/photo/close-up-photo-of-cat-with-its-eyes-closed-1183434/ by Amir Ghoorchiani
var catImage;
function preload(){
catImage = loadImage ("cat.jpeg");
}
function setup() {
createCanvas(400, 400);
imageMode(CENTER);
}
function draw() {
background(220);
image(catImage,200,200,400,400);
textSize(28);
textAlign(CENTER,TOP);
fill("white");
stroke("black");
strokeWeight(4);
textWrap(WORD);
text("When you sneeze and your human says 'bless you'",0,300,400);
}