Use on the webTotal Use [ 4307 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/c39b3a41b975e6b1eac457cec3b476bb?family=TS_mobile" rel="stylesheet"> 
orUsing @import CSS directive, put the following line in add to your css file.(http | https)
  @import url(https://db.onlinewebfonts.com/c/c39b3a41b975e6b1eac457cec3b476bb?family=TS_mobile); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "TS_mobile";
    src: url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.eot");
    src: url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/c39b3a41b975e6b1eac457cec3b476bb.svg#TS_mobile")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "TS_mobile";