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