Fonts
All normal Web-safe fonts including the following list are available for use when creating templates:
Lobster
The quick brown fox jumps over the lazy dog
Geo
The quick brown fox jumps over the lazy dog
Orbitron
The quick brown fox jumps over the lazy dog
Swanky and Moo Moo
The quick brown fox jumps over the lazy dog
Oswald
The quick brown fox jumps over the lazy dog
Buda
The quick brown fox jumps over the lazy dog
Philosopher
The quick brown fox jumps over the lazy dog
Monofett
The quick brown fox jumps over the lazy dog
Wire One
The quick brown fox jumps over the lazy dog
Arvo
The quick brown fox jumps over the lazy dog
Railway
The quick brown fox jumps over the lazy dog
Ultra
The quick brown fox jumps over the lazy dog
Using A Font
To use a font you must load it using the following lines of code:
PFont myFont = loadFont("name_of_font");
And then activate it by using the following line of code:
textFont(myFont, size_of_font);
Example:
PFont myFont = loadFont("Lobster");
textFont(myFont, 20);