xxxxxxxxxx
let text_1 = "VERSUS"
let text_2 = "ALICIA KEYS"
let text_3 = "JOHN LEGEND"
function setup() {
createCanvas(400, 400);
}
function draw() {
background(0);
fill(225, 145, 0)
quad(0,0,400,0,400,200,0,200)
fill(0)
quad(0, 200, 400, 200, 400, 400, 0, 400)
fill(0)
quad(220, 150, 250, 150, 230, 200, 200, 200)
quad(130, 150, 160, 150, 180, 200, 150, 200)
noStroke()
fill(225, 145, 0)
quad(150, 200, 180, 200, 200, 270, 170, 270)
quad(200, 200, 230, 200, 210, 270, 180, 270)
strokeWeight(4)
textFont('Press Gothic SC')
textSize(35)
text('JOHN LEGEND', 70, 320)
fill(0)
textSize(15)
text('VERSUS', 10, 20)
textSize(35)
text('ALICIA KEYS', 80, 130)
}