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