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