- Issue created by @Etzesty
- 🇪🇸Spain jncruces Sevilla
Hi,
Te url of the font must be a local path or a global domain, for example:
font-face {
font-family: APhont;
font-weight: bold;
src: url('https://www.yourdomain.com/.../aphont-bold.ttf') format("truetype");
}
span {
font-family: APhont, DejaVu Sans, sans-serif;
font-weight: bold;
}The path can be a local path of the server, for example:
font-face {
font-family: APhont;
font-weight: bold;
src: url('/home/youruser/.../aphont-bold.ttf') format("truetype");
}
span {
font-family: APhont, DejaVu Sans, sans-serif;
font-weight: bold;
}Try both.
Greetings.
- Status changed to Fixed
about 1 year ago 3:36pm 15 October 2023 Yeah, got it working after specifying absolute path with domain. Thank you for fast response.
Automatically closed - issue fixed for 2 weeks with no activity.