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