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