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