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