webfont.mdx 666 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. ---
  2. title: Webfont
  3. ---
  4. ![](https://raw.githubusercontent.com/tabler/tabler-icons/master/.github/packages/og-package-webfont.png)
  5. ## Installation
  6. ```
  7. yarn add @tabler/icons-webfont
  8. ```
  9. or
  10. ```
  11. npm install @tabler/icons-webfont
  12. ```
  13. or
  14. ```
  15. pnpm install @tabler/icons-webfont
  16. ```
  17. or just [download from Github](https://github.com/tabler/tabler-icons/releases).
  18. ### CDN
  19. ```html
  20. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@tabler/icons-webfont@$ICONS_VERSION/tabler-icons.min.css">
  21. ```
  22. ## Usage
  23. ### HTML
  24. ```html
  25. <i class="ti ti-brand-tabler"></i>
  26. ```
  27. ### CSS
  28. ```css
  29. content: 'ec8f';
  30. ```
  31. ### SCSS
  32. ```scss
  33. content: $ti-icon-brand-tabler;
  34. ```