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