In django (local test project), I have a style.css file in a static folder that works fine, and the style applies to the template. static folder contains a folder with images and a folder with fonts. The contents of the image folder are displayed in the browser, but there are no fonts !!! here is my font-face code:
font-family: 'βββBMitra'; src: url('fonts/BMitra.eot?#') format('eot'), url('fonts/BMitra.ttf') format('truetype'), url('fonts/BMitra.woff') format('woff');
I check css firebug and find that my personal font is disabled and the browser uses tahoma instead:
direction: rtl; color:
how do you use font in django?
source share