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