I am working on a project w/ Django and I am having trouble with fonts. I am able to see the uploaded font on my computer but not on my phone.
This is my file path:
static
|
interface
|
main.css
folsom-black.otf
This is my code for my html file:
<style>
@font-face {
font-family: 'Folsom';
src:
url("{% static 'interface/folsom-black.otf' %} format('otf')");
}
</style>
This is the code for my css file:
@font-face {
font-family: 'Folsom';
src:
url('../interface/folsom-black.otf') format('otf');
}