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