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