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