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