please help me, I have inserted the CSS font file in the directory and called the fint like this
link rel=“stylesheet” href=“Font_Awesome/all.min.css”
but when I refresh my web page, what I see is that the font is called but not displayed
Is there a solution to resolve my current issue?
What is your website URL?
Make sure that your pathname is correct and the UPPER/lowercase letters are correct.
“Font_Awesome/all.min.css”
is different from
“font awesome/all.min.css”
You might just try to use a CDN version of Font Awesome from another server to test it out. Once you get it working correctly, you can download and use a local version instead.
Example: include this in your head tag:
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha512-DTOQO9RWCH3ppGqcWaEA1BIZOC6xxalwEsw9c2QQeAIftl+Vegovlnee1c9QX4TctnWMn13TZye+giMm8e2LwA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
Then, clear your cache and cookies and reload your page to see if your fonts work.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.