Reputation: 1
After reviewing https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face as well as every single Big Cartel post on the internet regarding this specific issue, I have found no luck. The code is placed at the top of the document. I have tried it with and without apostrophes, format, and the formal font name "When Regular". I have copied and pasted the code from my CSS below.
Any ideas? Thank you. !!!
Edit: When hosting locally, the font still did not work. Shouldn't the answer to this be very simple?
@font-face {
font-family: when;
src: url(https://github.com/zenblatchley/when/blob/main/When-Regular.ttf) format(truetype);
}
* {
font-family: when;
}
Upvotes: 0
Views: 496