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