xxxxxxxxxx
76
function setup() {
createCanvas(400, 700);
}
function draw() {
background("#800080");
push();
noFill();
fill("#FF0000");
strokeWeight(0);
rect(0, 255, 300, 10);
fill("#FF0000");
strokeWeight(0);
rect(100, 360, 400, 10);
fill("#FF0000");
strokeWeight(0);
rect(0, 465, 300, 10);
fill("#FF0000");
strokeWeight(0);
rect(100, 580, 400, 10);
fill("#ffffff");
strokeWeight(0);
rect(95, 200, 210, 20);
fill("#ffffff");
strokeWeight(0);
triangle(230, 220, 320, 220, 365, 180)
triangle(30, 175, 80, 220, 160, 220)
fill("rgb(103,240,103)");
circle(120,235,30)
circle(280,235,30)
fill("#8884FF");
circle(250,10,100)
fill("#84AAFF");
circle(310,10,120)
fill("#75E5FF");
circle(380,10,150)
fill("#FFEB3B");
circle(20,10,150)
fill("#ffffff");
textSize(28);
textFont('Broadway')
textStyle(BOLD)
text("Jungho Bae", 20, 275 + 30);
textStyle(NORMAL)
text("Junghobae.com", 20, 275 + 60);
textFont("Bauhaus 93")
textStyle(BOLD)
text("M I C A", 150, 405);
textStyle(NORMAL)
text("Graphic Design", 125, 435);
textStyle(BOLD)
text("International student", 20, 570 - 60);
textStyle(NORMAL)
text("From South Korea", 20, 570 - 30);
textStyle(BOLD)
text("S o p h o m o r e", 150, 700 - 75);
textStyle(NORMAL)
text("2 0 2 4", 272, 700 - 30);
}