css - Font not loading in Monaca onsen ui -


hi have started developing in monaca ide , can't seem implement fonts in phonegap app.

@font-face {     font-family: "customfont";     src: url("components/monaca-onsenui/css/font_awesome/fonts/roboto-light.ttf") format("opentype");            /* make sure defined correct path, related             location of file `my_css.css` */      }     body {         font-family: "customfont";         font-size:30px;     } 

this css font want use, , not implemented...

can shed light on this?

are sure url correct? font file loaded correctly?

the following code should work:

@font-face {   font-family: 'roboto';   src: url('https://cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/font/roboto/roboto-regular.ttf'); }  body {   font-family: 'roboto';   font-size: '30px'; } 

http://codepen.io/argelius/pen/xbwzmv


Comments

Popular posts from this blog

c++ - No viable overloaded operator for references a map -

java - Custom OutputStreamAppender not run: LOGBACK: No context given for <MYAPPENDER> -

java - Cannot secure connection using TLS -