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