Skip to content

Instantly share code, notes, and snippets.

@guigarage
Created September 16, 2014 17:33
Show Gist options
  • Save guigarage/6ea110b098222ae0c83c to your computer and use it in GitHub Desktop.
Save guigarage/6ea110b098222ae0c83c to your computer and use it in GitHub Desktop.
Add a custom font to a JavaFX application by using CSS
@font-face {
font-family: 'Roboto';
src: url('Roboto-Medium.ttf');
}
.text {
-fx-font-family: "Roboto";
}
@ssi-anik
Copy link

if someone reaches here, can try this one too: https://stackoverflow.com/a/12181948/2190689

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment