xxxxxxxxxx
function setup() {
createCanvas(400, 400);
}
function draw() {
background('black');
noStroke();
fill('white');
// Replace font in index.html
// <link href="https://fonts.googleapis.com/css?family=Sour+Gummy" rel="stylesheet">
// https://fonts.google.com/specimen/Sour+Gummy
// Set font (without + )
// textFont("Times"); // vanilla
textFont("Sour Gummy");
textSize(72);
textStyle(NORMAL);
textAlign(CENTER, CENTER);
angleMode(DEGREES);
push();
translate(200,200);
rotate( 45 ) ;
text("Hello World", 0,0);
pop();
}