idc, just go straight to the code I need
Hugeicons is nice but their free CDN isn’t. The CSS isn’t minified, has a slight typo that causes a flash of unexpected characters, and the CDN is just Cloudflare R2, not really optimised for speed.
Here, we’ve fixed the CSS, and thanks to jsDelivr’s GitHub functionality you can access it via a blazing fast CDN.
Please note the service is best-effort only with no guarantees or SLA. Please see the support section.
In its most basic form:
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/JackDunnCodes/hugeicons-font@2026-06-16.0/icons.min.css"
integrity="sha384-Eg43hs0ohGyRzlw/UxYjFQaUstCQSAAOKH4MdC+A8OZYPeE8J3pTlhYoW5rYqe1g"
crossorigin="anonymous"
>
But you may wish to consider an asynchronous stylesheet, to improve font load times. Hugeicons can take a while to load - even with a CDN. At a certain point, the user agent’s processing power is the limiting factor, and while Hugeicons is loading, it often blocks all other fonts - which is not ideal.
<link
rel="preload"
href="https://cdn.jsdelivr.net/gh/JackDunnCodes/hugeicons-font@2026-06-16.0/icons.min.css"
integrity="sha384-Eg43hs0ohGyRzlw/UxYjFQaUstCQSAAOKH4MdC+A8OZYPeE8J3pTlhYoW5rYqe1g"
crossorigin="anonymous"
as="style"
onload="this.onload=null;this.rel='stylesheet'"
>
<noscript><!-- load CSS traditionally, if JS is disabled -->
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/JackDunnCodes/hugeicons-font@2026-06-16.0/icons.min.css"
integrity="sha384-Eg43hs0ohGyRzlw/UxYjFQaUstCQSAAOKH4MdC+A8OZYPeE8J3pTlhYoW5rYqe1g"
crossorigin="anonymous"
>
</noscript>
Generate links at https://www.jsdelivr.com/package/gh/JackDunnCodes/hugeicons-font
Please use SRI hashes and pin to specific commits
Firstly, I have nothing to do with Hugeicons, and Hugeicons has nothing to do with me. So I can’t help with issues related to icon design, and they can’t help with issues related to this repo’s CSS and font files.
In other words, this is provided as-is and to the best of our abilities, but it may well break, and if it does you can’t - and shouldn’t - hold us liable.
For details see LICENSE file. But (the following does not represent or replace the license) Hugeicons is MIT licensed, the fonts are licensed without restriction, and our modifications are public domain (including CC0).