xxxxxxxxxx
29
let Font;
let blood;
function setup() {
createCanvas(400, 500);
font = loadFont('Zombie Zone.ttf')
blood = loadImage('bloodd.png')
}
function draw() {
background(110,0,0);
textFont(font)
textSize(40)
text('Halloween Playlist',30,50)
textSize(30)
text('- Thriller',40,100)
text('- Ghostbusters',40,150)
text('- Somebodys Watching Me',40,200)
text('- Monster Mash',40,250)
text('- Spooky, Scary Skelotons',40,300)
text('- Disturbia',40,350)
text('- Halloween Halloween',40, 400)
text('- This is Halloween',40,450)
image(blood,200,50,150,150)
}