I've added custom @font-face styling to my CSS using a downloaded font, but it doesn't seem to be working.
Below is my CSS code:
@font-face {
font-family: "Quicksand";
src: url("fonts/Quicksand/Quicksand-Light.otf") format("opentype");
}
The font I'm trying to use is named Quicksand and it's stored in a directory within the same location as my index.html and main.css files. The font file itself is located under a folder called "fonts," which contains another folder named "Quicksand." Inside this folder is the specific font file I want to utilize, named "Quicksand-Light.otf."
Am I overlooking something obvious here?