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