Using the latest Font Awesome icons together with Font APEX
TLDR
Oracle APEX has its own set of icons, called Font APEX. This collection is a subset of the famous Font Awesome icons that are free to use. The collection stays consistent throughout the new versions of APEX with some small additions. However Fon...
blog.apexapplab.dev4 min read
Fede Gaete
Oracle APEX Developer
So needed for latest apps and so easy to implement
FYI for windows users check the output .css files for the src url
Correct value
src: url('fa-solid-900.woff2') format('woff2'), url('fa-solid-900.ttf') format('truetype');
Windows creates the new file with a / that when removed the icons will show
Wrong value src: url('/fa-solid-900.woff2') format('woff2'), url('/fa-solid-900.ttf') format('truetype');