Use on the webTotal Use [ 5840 ] times
1Add to the head section of web page.
  <link href="https://db.onlinewebfonts.com/c/4b92239d8903435a6a9be87ae5a874ce?family=CRU-Jariya-Italic" 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/4b92239d8903435a6a9be87ae5a874ce?family=CRU-Jariya-Italic); 
orUse font-face declaration Fonts.(http | https)
@font-face {
    font-family: "CRU-Jariya-Italic";
    src: url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.eot");
    src: url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/4b92239d8903435a6a9be87ae5a874ce.svg#CRU-Jariya-Italic")format("svg");
}
 
2CSS rules to specify fonts 
  font-family: "CRU-Jariya-Italic";