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