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