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