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