Code
<script>
// ჩატვირთე BPG Arial Caps jsDelivr-იდან (npm პაკეტი)
const fontLink = document.createElement("link");
fontLink.rel = "stylesheet";
fontLink.href = "https://cdn.jsdelivr.net/npm/bpg-arial-caps/css/bpg-arial-caps.min.css";
document.head.appendChild(fontLink);
// დაამატე წესები: გააქტიურე ფონტი ტექსტზე, არ შეეხო FA ხატულებს
const style = document.createElement("style");
style.textContent = `
/* ტექსტური ელემენტები */
body, p, h1, h2, h3, h4, h5, h6,
a, span, div, li, td, th, input, textarea, button, label, strong, em, b, u {
font-family: "BPG Arial Caps", sans-serif !important;
}
/* არ შეეხო Font Awesome ხატულებს */
i[class*="fa-"], i.fa, svg, [class*="fa-"]::before {
font-family: "Font Awesome 6 Free" !important;
font-style: normal !important;
font-weight: 900 !important;
}
`;
document.head.appendChild(style);
</script>