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