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