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