Reputation:
I am making HTML Emailer. The content of the emailer is of Raleway font. that's why I want to import Google's Raleway fonts in PhpStorm.
How can I do so?
Any help would be great.
Upvotes: 4
Views: 13499
Reputation: 324
There is no need to add fonts to the IntelliJ IDE directly. You should install the font to your OS.
sudo fc-cache -f -v
Then you'll see a full list of fonts of your system in the dropdown below. If there is no your installed font, you should restart your IDE and repeat the 3-rd step.
Enjoy ;)
Upvotes: 10