xxxxxxxxxx
31
let img;
let quote = "Honestly, I wish I were dead. \nWeeping many tears, she left me and said,\n“Alas, how terribly we suffer, Sappho. \nI really leave you against my will.”";
let poet = "- Sappho";
let font;
function preload(){
img = loadImage('assets/11057521743_86c6cb3185_o.jpg');
font = loadFont('assets/IBMPlexSerif-Regular.ttf');
}
function setup() {
createCanvas(800, 400);
}
function draw() {
background(220);
image(img, 0, 0);
textAlign(LEFT,TOP);
textFont(font);
fill(98, 91, 107);
textSize(30);
text(quote,50,90);
textSize(20);
text(poet, 460, 260);
}