I am currently struggling to implement a custom font on my website. I'm not very experienced with programming, and since my friend isn't available to help, I'd appreciate a solution from anyone. The issue I'm facing is that while the Calibri font works fine, any custom downloaded fonts, like HelveticaNeue, don't seem to work. The specific font file I'm trying to use is located in a folder named "fonts" within GoDaddy's server directory. Any assistance would be greatly appreciated! Here is the current code snippet:
@font-face {
font-family: "HelveticaNeue";
src: url("fonts/HelveticaNeue.otf);
}
h1{
font-family: Calibri;
letter-spacing: 6px;
}
p{
font-family: Calibri;
letter-spacing: 1px;
}