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