Support rendoring nudi fonts on webpage
Opened this issue · 0 comments
gshguru commented
Rendering nudi fonts in browser itself is possible and it will make it much easier to read ascii fonts and improve experience of conversion.
You can download nudi web fonts either from
- ಕನ್ನಡ ಗಣಕ ಪರಿಷತ್ತು - ನುಡಿ ಅಕ್ಷರ ಶೈಲಿ(Fonts)
or - ffonts.net
Adding font-face can be done as below:
@font-face {
font-family: 'Nudi-05-k';
src:url('Nudi-05-k.ttf.woff') format('woff'),
url('Nudi-05-k.ttf.svg#Nudi-05-k') format('svg'),
url('Nudi-05-k.ttf.eot'),
url('Nudi-05-k.ttf.eot?#iefix') format('embedded-opentype');
font-weight: normal;
font-style: normal;
}
Reference: CSS @font-face Rule