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