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