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