Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
javax.swing.plaf.FontUIResource f = new FontUIResource("<fontname_here>", java.awt.Font.TRUETYPE_FONT, <fontsize_here>);
java.util.Enumeration keys = UIManager.getDefaults().keys();
while (keys.hasMoreElements()) {
Object key = keys.nextElement();
Object value = UIManager.get (key);
if (value instanceof javax.swing.plaf.FontUIResource)
UIManager.put (key, f);
}