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