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