PFont myFont; void setup() { size(290, 100); background(255); noLoop(); myFont = loadFont("ArialNarrow-48.vlw"); textFont(myFont, 48); } void draw() { fill(0); text("Graphic", 10, 60); fill(70); text("Coding", 150, 60); }