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