xxxxxxxxxx
23
let linkPage;
let linkTutorial;
let linkGithub;
function setup() {
createCanvas(windowWidth, windowHeight);
background(220, 20, 120);
linkPage = createA("https://idmp5.github.io", "IDM p5 Website");
linkTutorial = createA(
"https://idmnyu.github.io/p5-fundamentals/creative-coding/the-dom/",
"This Tutorial"
);
linkGithub = createA("https://github.com/IDMNYU/", "IDM on GitHub");
linkPage.position(0, 0);
linkTutorial.position(0, height / 4);
linkGithub.position(width / 2, height / 4);
noLoop();
}
function draw() {}