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