xxxxxxxxxx
43
let logo;
function preload(){
logo=loadImage ("logo.png");
}
function setup() {
createCanvas(windowWidth, windowHeight);
background (255);
//ID card general form
rectMode(CENTER);
fill(255);
strokeWeight (5);
stroke(101, 1, 144);
rect(width/2, height/2, width/2-310, height-10, 10);
// design of the ID card
//noStroke();
//fill (101, 1, 144);
//rect(width, height/2, 30, height-10, 10);
//rect(width/2, height/25, width/2.5,30, 10);
//rect(width/2, height/11.25, 200, 20, 10);
//display logo image
image(logo, width/2+130, height/45);
//Text "NYUAD"
noStroke(0);
fill(101, 1, 144);
textAlign(CENTER, CENTER);
textSize(40);
textStyle(BOLD);
text("NYUAD", width/2+75, height-80); // Display "NYUAD" below the photograph
//text box for inputting name
}
function draw() {
}