> show canvas only <


/* built with Studio Sketchpad: 
 *   https://sketchpad.cc
 * 
 * observe the evolution of this sketch: 
 *   https://itct.sketchpad.cc/sp/pad/view/ro.4iZWOnlsyqv/rev.2
 * 
 * authors: 
 *   
 *   JongHwan Oh
 *   Jinsu Eun

 * license (unless otherwise specified): 
 *   creative commons attribution-share alike 3.0 license.
 *   https://creativecommons.org/licenses/by-sa/3.0/ 
 */ 



PFont nanumBrush;
PFont nanumPen;

void setup() {
  size(600, 400);
  nanumBrush = createFont("NanumGothic", 48); //for most cases
  nanumPen = loadFont("NanumPen-48.vlw"); // using create Font menu
}

void draw() {
  background(80,30,50);
  textFont(nanumBrush, 56);
  fill(0);
  textAlign(CENTER);
  fill(210,210,240);
  text("정보문화기술입문 :)", 300, 200);
  textFont(nanumPen, 48);
  textAlign(RIGHT, BOTTOM);
  fill(240,210,210);
  text(" 프로세싱 꿀잼~", 500, 300);
}