xxxxxxxxxx
34
let img;
let font;
let mainTitle = "SUMMER";
let textPos = 25;
let lineX = 50;
let lineY = 50;
function preload(){
img = loadImage("assets/summer.jpg");
font = loadFont("assets/moonrising.ttf")
}
function setup() {
createCanvas(img.width, img.height);
background(220);
//image(img, x, y, [width], [height])
image(img, 0, 0);
textFont(font);
textSize(75)
fill(255)
text(mainTitle, textPos, textPos * 3)
let secondLineY = height - (lineY * 2);
stroke(255);
strokeWeight(14);
line(width, 0, width/2, secondLineY);
strokeWeight(24);
line(width, lineY, width/2 + lineX, secondLineY);
}