Mahmoud Az
banner
mahmoudaz.bsky.social
Mahmoud Az
@mahmoudaz.bsky.social
Front-end Developer, ex Digital Marketer, and 🍦Ice Cream Evangelist.

Same full of dan 😅
April 4, 2024 at 1:15 AM
Tip 2: If you have a multi-language web-site without (Without i18n) you just use 2 languages
Add a font that support this a a direct-second fallback for the main font in the body font family like this
body {
font-family: "Main Font", "Direct Second Fallback Supports Other Lang",
}
April 3, 2024 at 4:31 AM
:: If you want to add fallback you can add multiple local fonts through the src like this

src:
local("Trickster"),
url("trickster-COLRv1.otf") format("opentype") tech(color-COLRv1),
url("trickster-outline.otf") format("opentype"),
url("trickster-outline.woff") format("woff");
April 3, 2024 at 4:31 AM