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