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