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