I have a unique SVG image featured on my website. Currently, I do not possess an SSL certificate, so you may encounter a security error before accessing the content. The font I originally utilized in creating this image was Segoe UI. Interestingly, while it displays correctly on my desktop, when viewed on a mobile device, it defaults to Times New Roman. To address this issue, I attempted the following workaround without success:
@media (max-width: 576px) {
#heroimg {
font-family: Arial, sans-serif;
}
}
My reasoning behind incorporating this code into my CSS file was to provide an alternative font option in case the primary font could not be loaded successfully.