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