xxxxxxxxxx
68
/*
logo 1
by elias leon
december 2022
Isidoro Ambasch Lion Inverse by GJD
original: https://openclipart.org/download/311865/1545107193.svg
shared under CC license 1 public domain" https://creativecommons.org/publicdomain/zero/1.0/ </a>
*/
var lionImage;
function preload() {
lionImage = loadImage("lion.svg")
}
function setup() {
createCanvas(400, 400);
textFont('Georgia');
}
function draw() {
background(4, 21, 98);
image(lionImage, 270, 80, 100, 100);
var name = "Elias Leon";
var website = "eliasleon.com";
//logo
//E
fill(255);
stroke(0);
strokeWeight(4);
rect(90, 50, 60, 200); //|
rect(90, 50, 110, 50); //-
rect(90, 125, 110, 50);
rect(90, 200, 110, 50);
//L
rect(200, 50, 60, 200);//|
rect(200, 200, 110, 50);
//name
textAlign(CENTER, BASELINE)
textSize(48);
fill("white");
stroke(0);
strokeWeight(4);
text (name, 200, 300);
//website
textSize(37);
text (website, 200, 340);
noFill();
square(width-380, height-380, 360);
}