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