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