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