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