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