Webfont

Webfont Loader

Web Font Loader gives you added control when using linked fonts via @font-face.

You could load fonts from Google Fonts using the Web Font Loader hosted on Google Hosted Libraries using the following code.

<script src="https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js"></script>

To use the Web Font Loader library, just include it in your page and tell it which fonts to load.

<script>
var WebFontConfig = {
    google: {
      families: ['Noto Sans KR:100,400,700'],
      text: ' !"#$%&\'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~'
    }
  };
  WebFont.load(WebFontConfig);
</script>

Bootstrap Icons

Official open source SVG icon library for Bootstrap.

Bootstrap Icons are published to npm, but they can also be manually downloaded if needed.

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.1/font/bootstrap-icons.css">

Icon fonts with classes for every icon are also included for Bootstrap Icons.

<i class="bi bi-123"></i>