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