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