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