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